[PATCH] D58279: Set cmake policy CMP0075 to NEW

Pavel Labath via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 18 02:09:34 PST 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL354251: Set cmake policy CMP0075 to NEW (authored by labath, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58279/new/

https://reviews.llvm.org/D58279

Files:
  lldb/trunk/CMakeLists.txt


Index: lldb/trunk/CMakeLists.txt
===================================================================
--- lldb/trunk/CMakeLists.txt
+++ lldb/trunk/CMakeLists.txt
@@ -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}


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58279.187200.patch
Type: text/x-patch
Size: 360 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190218/6dd3b791/attachment.bin>


More information about the llvm-commits mailing list