From 24c33ee00c3ab8d3c04d14e17441c3a0a6be842a Mon Sep 17 00:00:00 2001 From: Gonzalo Exequiel Pedone Date: Sun, 21 Feb 2021 17:14:20 -0300 Subject: [PATCH] Try to force a Release build in Visual Studio 3. --- ports/ci/appveyor/build.bat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/ci/appveyor/build.bat b/ports/ci/appveyor/build.bat index 2af262e..c1e8fdd 100755 --- a/ports/ci/appveyor/build.bat +++ b/ports/ci/appveyor/build.bat @@ -45,7 +45,7 @@ if "%CMAKE_GENERATOR:~0,13%" == "Visual Studio" ( -DCMAKE_BUILD_TYPE=Release ^ -DCMAKE_INSTALL_PREFIX="%INSTALL_PREFIX%" ^ .. - cmake --config Release --build . + cmake --build . --config Release ) cmake --build . @@ -78,7 +78,7 @@ if "%CMAKE_GENERATOR:~0,13%" == "Visual Studio" ( -DCMAKE_BUILD_TYPE=Release ^ -DCMAKE_INSTALL_PREFIX="%INSTALL_PREFIX%" ^ .. - cmake --config Release --build . + cmake --build . --config Release ) cd ..