2
0
mirror of https://github.com/Alia5/GlosSI.git synced 2024-11-15 00:12:51 +00:00
GlosSI/buildSFML.bat

11 lines
263 B
Batchfile
Raw Normal View History

2021-10-28 13:52:43 +00:00
cd deps/SFML
2021-10-30 12:54:31 +00:00
if "%APPVEYOR%"=="" (
2021-10-28 13:52:43 +00:00
cmake.exe -S . -B out/Debug -DCMAKE_BUILD_TYPE=Debug
cmake.exe --build out/Debug --config Debug
2021-10-30 12:54:31 +00:00
)
2021-10-28 13:52:43 +00:00
cmake.exe -S . -B out/Release -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake.exe --build out/Release --config RelWithDebInfo
cd ../..