From 90a8850c7fec7d3ffb6cebc4f4a61f1c2a0b87ec Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Sat, 30 Oct 2021 14:54:31 +0200 Subject: [PATCH] Don't build debug sfml on CI --- buildSFML.bat | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildSFML.bat b/buildSFML.bat index 9fbcee8..f05a0c1 100644 --- a/buildSFML.bat +++ b/buildSFML.bat @@ -1,7 +1,9 @@ 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