From: Ivan Maidanski Date: Sun, 7 Jul 2019 07:49:47 +0000 (+0300) Subject: AppVeyor CI: enable_werror for all cmake builds X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5732947c46291c07934b34e7779c42843e56a373;p=gc AppVeyor CI: enable_werror for all cmake builds --- diff --git a/appveyor.yml b/appveyor.yml index 46f1dda1..1e9c0716 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,7 +41,7 @@ install: build_script: - cmd: if [%TARGET%]==[cmake] ( - cmake %CMAKE_OPTIONS% . && cmake --build . --config %CMAKE_CONFIG% ) + cmake %CMAKE_OPTIONS% -Denable_werror=ON . && cmake --build . --config %CMAKE_CONFIG% ) - cmd: if [%TARGET%]==[cygwin] ( C:\cygwin\bin\bash -e -l -c "cd /cygdrive/c/projects/bdwgc && ./autogen.sh && ./configure %CONF_OPTIONS% --enable-werror && cat include/config.h && make -j CFLAGS_EXTRA='%CFLAGS_EXTRA%'" )