dungeon/build.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
204 B
Batchfile

@echo off
:: Set your paths here
set SDL2_PATH="..\_libs\SDL2-2.0.5"
set LUA_DIR="E:\Programmering\C++\_libs\lua-5.3.4"
mkdir build
cd build
cmake build -D SDL2_PATH:STRING=%SDL2_PATH% ..
cd ..