From 9e28231191c8c23f1cf9d22e6793f5b688455069 Mon Sep 17 00:00:00 2001 From: eidheim Date: Tue, 20 Sep 2016 15:43:23 +0200 Subject: [PATCH] Temporarily disable error on warnings in CI's due to debian testing's gtksourceviewmm3 is not yet updated to correspond to the new gtksourceview3 package --- ci/compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/compile.sh b/ci/compile.sh index 59d86f2..18ee1bc 100755 --- a/ci/compile.sh +++ b/ci/compile.sh @@ -7,10 +7,10 @@ if [ "${cmake_command}" == "" ]; then else mingw="mingw32" fi - cmake_command="cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/${mingw} -DENABLE_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror .." + cmake_command="cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/${mingw} -DENABLE_TESTING=1 .." make_command="make" else - cmake_command="cmake -DENABLE_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror .." + cmake_command="cmake -DENABLE_TESTING=1 .." fi fi