OSDN Git Service

[CMake] Force CMP0057 to NEW
authorChris Bieneman <beanz@apple.com>
Tue, 27 Sep 2016 23:18:32 +0000 (23:18 +0000)
committerChris Bieneman <beanz@apple.com>
Tue, 27 Sep 2016 23:18:32 +0000 (23:18 +0000)
Hans reported an issue with r282510 on the list. This should resolve the issue.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282552 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt

index 18d4b91..85d4b51 100644 (file)
@@ -15,6 +15,10 @@ if (POLICY CMP0051)
   cmake_policy(SET CMP0051 OLD)
 endif()
 
+if(POLICY CMP0057)
+  cmake_policy(SET CMP0057 NEW)
+endif()
+
 if(NOT DEFINED LLVM_VERSION_MAJOR)
   set(LLVM_VERSION_MAJOR 4)
 endif()