
* Patch CMake version check in Umpire * Update version constraint for cmake_version_check patch Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add maintainers to Umpire Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
14 lines
493 B
Diff
14 lines
493 B
Diff
diff --git a/src/umpire/CMakeLists.txt b/src/umpire/CMakeLists.txt
|
|
index 18518f13..c2e45e03 100644
|
|
--- a/src/umpire/CMakeLists.txt
|
|
+++ b/src/umpire/CMakeLists.txt
|
|
@@ -105,7 +105,7 @@ blt_add_library(
|
|
DEPENDS_ON ${umpire_depends}
|
|
DEFINES ${umpire_defines})
|
|
|
|
-if (NOT WIN32 AND CMAKE_VERSION VERSION_GREATER 3.17)
|
|
+if (NOT WIN32 AND NOT ${CMAKE_VERSION} VERSION_LESS 3.18)
|
|
target_link_options(
|
|
umpire INTERFACE
|
|
$<BUILD_INTERFACE:$<$<NOT:$<LINK_LANGUAGE:Fortran>>:-rdynamic>>
|