From: Matthias Maier Date: Fri, 14 Mar 2025 22:16:02 +0000 (-0500) Subject: CMake: properly reset CMAKE_REQUIRED_* variables in enable_if_links() X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=439c82cd81d26d1b9c682458a373d8df3110a8e2;p=dealii.git CMake: properly reset CMAKE_REQUIRED_* variables in enable_if_links() --- diff --git a/cmake/macros/macro_enable_if_links.cmake b/cmake/macros/macro_enable_if_links.cmake index 63b93916d5..fe0e4b69c2 100644 --- a/cmake/macros/macro_enable_if_links.cmake +++ b/cmake/macros/macro_enable_if_links.cmake @@ -14,15 +14,16 @@ # # Tests whether it is possible to compile and link a dummy program with a -# given flag. -# If so, add it to variable. +# given flag. If so, add it to variable. +# +# Note: This macro will reset the CMAKE_REQUIRED_* variables. # # Usage: # enable_if_links(variable flag) # macro(enable_if_links _variable _flag) - # keep on top to avoid cluttering the _flag and _flag_stripped variables + reset_cmake_required() enable_if_supported(CMAKE_REQUIRED_FLAGS "-Werror") string(STRIP "${_flag}" _flag_stripped) @@ -32,11 +33,12 @@ macro(enable_if_links _variable _flag) list(APPEND CMAKE_REQUIRED_LIBRARIES "${_flag_stripped}") CHECK_CXX_SOURCE_COMPILES("int main(){}" DEAL_II_HAVE_LINKER_FLAG_${_flag_name}) - reset_cmake_required() if(DEAL_II_HAVE_LINKER_FLAG_${_flag_name}) set(${_variable} "${${_variable}} ${_flag_stripped}") string(STRIP "${${_variable}}" ${_variable}) endif() endif() + + reset_cmake_required() endmacro()