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

13 lines
315 B
PowerShell

cd deps/SFML
if ($env:APPVEYOR -like "") {
cmake.exe -S . -B out/Debug -DCMAKE_BUILD_TYPE=Debug
cmake.exe --build out/Debug --config Debug
}
$env:_CL_ = "/MDd"
cmake.exe -S . -B out/Release -DCMAKE_BUILD_TYPE=RelWithDebInfo
$env:_CL_ = "/MD"
cmake.exe --build out/Release --config RelWithDebInfo
cd ../..