From 6a10864d442830fdcf20f16683753db6a691f888 Mon Sep 17 00:00:00 2001 From: Eric Fiselier Date: Thu, 26 Jul 2018 05:08:30 +0000 Subject: [PATCH] Copy LLVM CMake configuration for CMake Policy CMP0068 llvm-svn: 338005 --- libcxx/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libcxx/CMakeLists.txt b/libcxx/CMakeLists.txt index 1dd8725..2bffb19 100644 --- a/libcxx/CMakeLists.txt +++ b/libcxx/CMakeLists.txt @@ -11,6 +11,10 @@ endif() if(POLICY CMP0022) cmake_policy(SET CMP0022 NEW) # Required when interacting with LLVM and Clang endif() +if(POLICY CMP0068) + cmake_policy(SET CMP0068 NEW) + set(CMAKE_BUILD_WITH_INSTALL_NAME_DIR ON) +endif() # Add path for custom modules set(CMAKE_MODULE_PATH -- 2.7.4