dungeon/build.bat

10 lines
204 B
Batchfile
Raw Normal View History

2017-09-17 13:43:13 +02:00
@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"
2017-09-17 13:43:13 +02:00
mkdir build
cd build
cmake build -D SDL2_PATH:STRING=%SDL2_PATH% ..
2017-09-17 13:43:13 +02:00
cd ..