From 3c0127190d2ebff8a8c55a7fcdded7c7f6077576 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Wed, 19 Feb 2025 16:47:56 +0100 Subject: [PATCH] gitlab-ci-initial-cache.cmake: CMAKE_C_FLAGS must be set as a cache variable to be used, and thus activate -Werror --- cmake_modules/gitlab-ci-initial-cache.cmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmake_modules/gitlab-ci-initial-cache.cmake b/cmake_modules/gitlab-ci-initial-cache.cmake index 4bc29ea3b..0a436305c 100644 --- a/cmake_modules/gitlab-ci-initial-cache.cmake +++ b/cmake_modules/gitlab-ci-initial-cache.cmake @@ -2,7 +2,11 @@ set(BUILD_SHARED_LIBS "ON" CACHE BOOL "") set(CMAKE_INSTALL_PREFIX "$ENV{PWD}/install-$ENV{VERSION}" CACHE PATH "") set(CMAKE_VERBOSE_MAKEFILE "ON" CACHE BOOL "") -set(CMAKE_C_FLAGS "-Werror") +if(CMAKE_C_FLAGS) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror" CACHE STRING "") +else() + set(CMAKE_C_FLAGS "-Werror" CACHE STRING "") +endif() option(MORSE_ENABLE_WARNING "Enable warning messages" ON) option(MORSE_ENABLE_COVERAGE "Enable flags for coverage test" ON) -- GitLab