forked from OSchip/llvm-project
VERSION_GREATER_EQUAL not supported in llvm cmake.
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
This commit is contained in:
parent
f185823668
commit
0022ab4d80
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue