diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-08-11 17:21:55 -0700 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-08-11 17:21:55 -0700 |
commit | c989da318c62fa0e2d88cfaae313cc00ee337eba (patch) | |
tree | 878ac62acd05167cf261a86fdab88caf9467f6aa /LuaJIT.bat | |
parent | f95886fd75d6af7d7e959d08bd960006172b7f9f (diff) |
MSVC project for Dalos-cli.
Diffstat (limited to 'LuaJIT.bat')
-rw-r--r-- | LuaJIT.bat | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/LuaJIT.bat b/LuaJIT.bat new file mode 100644 index 0000000..e51ff1f --- /dev/null +++ b/LuaJIT.bat @@ -0,0 +1,17 @@ +@echo off + +cd Balau\LuaJIT\src + +call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86 +call ..\..\..\LuaJIT-buildsub.bat static +copy lua51.lib ..\..\..\lua51_32r.lib +call ..\..\..\LuaJIT-buildsub.bat debug static +copy lua51.lib ..\..\..\lua51_32d.lib + +call "%VS120COMNTOOLS%\..\..\vc\vcvarsall.bat" x86_amd64 +call ..\..\..\LuaJIT-buildsub.bat static +copy lua51.lib ..\..\..\lua51_64r.lib +call ..\..\..\LuaJIT-buildsub.bat debug static +copy lua51.lib ..\..\..\lua51_64d.lib + +cd ..\..\.. |