]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: properly reset CMAKE_REQUIRED_* variables in enable_if_links()
authorMatthias Maier <tamiko@43-1.org>
Fri, 14 Mar 2025 22:16:02 +0000 (17:16 -0500)
committerMatthias Maier <tamiko@43-1.org>
Fri, 14 Mar 2025 22:16:02 +0000 (17:16 -0500)
cmake/macros/macro_enable_if_links.cmake

index 63b93916d5b8cd21a3f55c0de9cec4b3c01b4a1d..fe0e4b69c266c85cef9efcc27942c028a7a8078f 100644 (file)
 
 #
 # 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()

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.