9 lines
No EOL
170 B
Batchfile
9 lines
No EOL
170 B
Batchfile
@echo off
|
|
|
|
:: Set your paths here
|
|
set SDL2_PATH="E:\Programmering\C++\_libs\SDL2-2.0.5"
|
|
|
|
mkdir build
|
|
cd build
|
|
cmake build -D SDL2_PATH:STRING=%SDL2_PATH% ..
|
|
cd .. |