diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2011-07-27 09:07:09 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2011-07-27 09:07:09 +0200 |
commit | a11d1857f1f242199ea330e1679cf55e2771395b (patch) | |
tree | c57bdc180418073e25724d93d87491c3fa9c2e45 /ext/lua-wdk/build-x86.bat | |
parent | f39d21328603673ee83c55a5d6d55b276cc8bdb8 (diff) | |
parent | 69ba67b2549b6c6a46abd19879b67e1545c9ae3b (diff) |
Merge with default
Diffstat (limited to 'ext/lua-wdk/build-x86.bat')
-rw-r--r-- | ext/lua-wdk/build-x86.bat | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ext/lua-wdk/build-x86.bat b/ext/lua-wdk/build-x86.bat new file mode 100644 index 00000000..75a054ed --- /dev/null +++ b/ext/lua-wdk/build-x86.bat @@ -0,0 +1,33 @@ +@echo off +set WDK_ROOT=c:\WinDDK\7600.16385.1 +set OPATH=%PATH% +set INCLUDE=%WDK_ROOT%\inc\api;%WDK_ROOT%\inc\crt;%WDK_ROOT%\inc\ddk +set LIB=%WDK_ROOT%\lib\wxp\i386;%WDK_ROOT%\lib\Crt\i386 +set PATH=%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0\VC\bin;%PROGRAMFILES(X86)%\Microsoft Visual Studio 10.0\Common7\IDE +set DEST=..\lua-wdk-5.1.4-2-x86 +call etc\luavs.bat +@echo off +echo.Press return when ready to install! +pause +set PATH=%OPATH% +rmdir /Q /S %DEST% +mkdir %DEST% +mkdir %DEST%\bin +mkdir %DEST%\lib +mkdir %DEST%\include +copy COPYRIGHT %DEST%\LICENSE.LUA +:: binaries and libraries +copy src\lua.exe %DEST%\bin +copy src\lua51.dll %DEST%\bin +copy src\lua51.exp %DEST%\bin +copy src\luac.exe %DEST%\bin +:: library +copy src\lua51.lib %DEST%\lib +:: api +copy src\lua.h %DEST%\include +copy src\luaconf.h %DEST%\include +copy src\lualib.h %DEST%\include +copy src\lauxlib.h %DEST%\include +copy etc\lua.hpp %DEST%\include +echo.Finished! +pause |