2
0
mirror of https://github.com/Alia5/GlosSI.git synced 2024-11-03 03:40:28 +00:00
GlosSI/buildSFML.bat
2021-10-30 14:54:31 +02:00

11 lines
263 B
Batchfile

cd deps/SFML
if "%APPVEYOR%"=="" (
cmake.exe -S . -B out/Debug -DCMAKE_BUILD_TYPE=Debug
cmake.exe --build out/Debug --config Debug
)
cmake.exe -S . -B out/Release -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake.exe --build out/Release --config RelWithDebInfo
cd ../..