dungeon/build_msys.bat
Adrian Hedqvist ec131d8bda Too much stuff
* Implemented lua using kaguya, only for config files for now
* Moved color struct to its own header
* statically link glew instead of including the source in the project
* Other stuff that I don't remember
2017-10-18 12:25:25 +02:00

10 lines
274 B
Batchfile

@echo off
:: Set your paths here
set SDL2_PATH="/e/Programmering/C++/_libs/SDL2-2.0.5/msys/x86_64-w64-mingw32"
set LUA_DIR="/e/Programmering/C++/_libs/lua-5.3.4"
mkdir build
cd build
cmake build -D LUA_DIR:STRING=%LUA_DIR% -D SDL2_PATH:STRING=%SDL2_PATH% ..
cd ..