From 53a1a18ccca6d71c2fcdf4b88850e889fb40e988 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 10 Oct 2020 23:36:44 +0200 Subject: [PATCH] Enable -Werror for Travis CI builds too This needs to be done explicitly now, since the changes of c6ed5f70 (Don't use -Werror unconditionally when building SOCI, 2020-06-05). --- scripts/travis/common.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/travis/common.sh b/scripts/travis/common.sh index 296d9f0b..d6086542 100755 --- a/scripts/travis/common.sh +++ b/scripts/travis/common.sh @@ -20,6 +20,7 @@ fi SOCI_COMMON_CMAKE_OPTIONS=' -DCMAKE_BUILD_TYPE=Debug -DCMAKE_VERBOSE_MAKEFILE=ON + -DSOCI_ENABLE_WERROR=ON -DSOCI_STATIC=OFF -DSOCI_TESTS=ON '