[PATCH] D57326: VERSION_GREATER_EQUAL not supported in llvm's minimum required cmake version
Phabricator via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 28 07:48:30 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL352378: VERSION_GREATER_EQUAL not supported in llvm cmake. (authored by rsingh, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D57326?vs=183848&id=183861#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57326/new/
https://reviews.llvm.org/D57326
Files:
llvm/trunk/unittests/Support/CMakeLists.txt
Index: llvm/trunk/unittests/Support/CMakeLists.txt
===================================================================
--- llvm/trunk/unittests/Support/CMakeLists.txt
+++ llvm/trunk/unittests/Support/CMakeLists.txt
@@ -90,7 +90,7 @@
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):
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57326.183861.patch
Type: text/x-patch
Size: 632 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190128/15ac494e/attachment.bin>
More information about the llvm-commits
mailing list