diff options
author | Diego Nehab <diego@impa.br> | 2013-05-27 21:17:00 +0800 |
---|---|---|
committer | Diego Nehab <diego@impa.br> | 2013-05-27 21:17:00 +0800 |
commit | 3d61b0fe36708bce78bd087c7f7247e93e07a667 (patch) | |
tree | 51727c3f53b3e550467ee60eca54a2a202a828f3 /win32.cmd | |
parent | afe04943184c95adfbb2d05b8b7f0f4b3c36c3b5 (diff) | |
parent | 834a3cf520637df0af9967e1f8ad9e40837771cb (diff) | |
download | luasocket-3d61b0fe36708bce78bd087c7f7247e93e07a667.tar.gz luasocket-3d61b0fe36708bce78bd087c7f7247e93e07a667.tar.bz2 luasocket-3d61b0fe36708bce78bd087c7f7247e93e07a667.zip |
Merge branch 'pkulchenko' into unstable
Diffstat (limited to 'win32.cmd')
-rw-r--r-- | win32.cmd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/win32.cmd b/win32.cmd new file mode 100644 index 0000000..48522f0 --- /dev/null +++ b/win32.cmd | |||
@@ -0,0 +1,12 @@ | |||
1 | make PLAT=win32 LUAV=5.2 LUAINC_win32='c:\cygwin\home\diego\build\include' LUALIB_win32='c:\cygwin\home\diego\build\bin\release' | ||
2 | |||
3 | #!/bin/sh | ||
4 | for p in Release Debug x64/Release x64/Debug; do | ||
5 | for el in mime socket; do | ||
6 | for e in dll lib; do | ||
7 | cp $p/$el/core.$e ../bin/$p/$el/ | ||
8 | done; | ||
9 | done; | ||
10 | cp src/ltn12.lua src/socket.lua src/mime.lua ../bin/$p/ | ||
11 | cp src/http.lua src/url.lua src/tp.lua src/ftp.lua src/headers.lua src/smtp.lua ../bin/$p/socket/ | ||
12 | done; | ||