Adrian Hedqvist
ec131d8bda
* 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
10 lines
No EOL
204 B
Batchfile
10 lines
No EOL
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 .. |