From 427154b1343f5bedc44ece89553fe1f62d5d315c Mon Sep 17 00:00:00 2001 From: John McNamara Date: Fri, 4 Jun 2021 17:04:06 +0100 Subject: [PATCH] Fix for Cmake versions that don't support VERSION_GREATER_EQUAL Closes #336 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e8816d81..55974b3d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -111,7 +111,7 @@ enable_testing() # The use of the word ZLIB_ROOT should still work prior to "3.12.0", # just it's been generalized for all packages now. Just set the policy # to new, so we use it, and it will be used prior to 3.12 anyway. -if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.12") +if(${CMAKE_VERSION} VERSION_GREATER "3.12" OR ${CMAKE_VERSION} VERSION_EQUAL "3.12") cmake_policy(SET CMP0074 NEW) endif()