You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI-fork/buildSFML.bat

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 ../..