VERSION_GREATER_EQUAL not supported in llvm cmake.
authorRanjeet Singh <Ranjeet.Singh@arm.com>
Mon, 28 Jan 2019 15:48:07 +0000 (15:48 +0000)
committerRanjeet Singh <Ranjeet.Singh@arm.com>
Mon, 28 Jan 2019 15:48:07 +0000 (15:48 +0000)
Patch https://reviews.llvm.org/D56329 caused build failures for me when
building on Windows because of the use of cmake operator
'VERSION_GREATER_EQUAL' which isn't supported in older versions of cmake. The
llvm website states that minimum required version of cmake for building llvm is
3.4.3 https://llvm.org/docs/CMake.html

Differential Revision: https://reviews.llvm.org/D57326

llvm-svn: 352378

llvm/unittests/Support/CMakeLists.txt

index 4060be8..40bf939 100644 (file)
@@ -90,7 +90,7 @@ if(NOT MSVC)
   set_source_files_properties(AlignOfTest.cpp PROPERTIES COMPILE_FLAGS -w)
 endif()
 if(MSVC)
-  if( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.15 )
+  if( CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 19.14 )
     # Since VS2017 15.8, the following snippet: Failed<CustomSubError>()
     # generates a warning:
     # \svn\llvm\utils\unittest\googlemock\include\gmock\gmock-matchers.h(186):