Set cmake policy CMP0075 to NEW
authorPavel Labath <pavel@labath.sk>
Mon, 18 Feb 2019 10:09:29 +0000 (10:09 +0000)
committerPavel Labath <pavel@labath.sk>
Mon, 18 Feb 2019 10:09:29 +0000 (10:09 +0000)
Summary:
The policy is about cmake_include_files ignoring
CMAKE_REQUIRED_LIBRARIES in the OLD behavior. Llvm already sets this
policy to NEW, but that is overridden by our cmake_minimum_required
command.

This makes our cmake policy setup consistent with the llvm build files
and avoids a warning when using newer versions of cmake.

Reviewers: sgraenitz, xiaobai

Subscribers: mgorny, lldb-commits

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

llvm-svn: 354251

lldb/CMakeLists.txt

index 7c8ec2f..709c711 100644 (file)
@@ -1,5 +1,9 @@
 cmake_minimum_required(VERSION 3.4.3)
 
+if(POLICY CMP0075)
+  cmake_policy(SET CMP0075 NEW)
+endif()
+
 # Add path for custom modules
 set(CMAKE_MODULE_PATH
   ${CMAKE_MODULE_PATH}