From a0ab096796abf42d57a2211fb7b7c385d38d116b Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Thu, 23 Oct 2014 16:51:12 +0000 Subject: Make headers available in the build directory This essentially re-does r194825 and makes it possible to run clang with libc++ without having to install it, even if you don't have any version of libc++ installed in /usr/. This behaviour broke in r210577/r211629, which fixed pr18681. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@220489 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/CMakeLists.txt | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'include/CMakeLists.txt') diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index bbf7ea42b..df2cd343d 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -1,13 +1,22 @@ if (NOT LIBCXX_INSTALL_SUPPORT_HEADERS) set(LIBCXX_SUPPORT_HEADER_PATTERN PATTERN "support" EXCLUDE) endif() - -install(DIRECTORY . - DESTINATION include/c++/v1 - FILES_MATCHING +set(LIBCXX_HEADER_PATTERN PATTERN "*" PATTERN "CMakeLists.txt" EXCLUDE PATTERN ".svn" EXCLUDE ${LIBCXX_SUPPORT_HEADER_PATTERN} + ) + +file(COPY . + DESTINATION "${CMAKE_BINARY_DIR}/include/c++/v1" + FILES_MATCHING + ${LIBCXX_HEADER_PATTERN} + ) + +install(DIRECTORY . + DESTINATION include/c++/v1 + FILES_MATCHING + ${LIBCXX_HEADER_PATTERN} PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ ) -- cgit v1.2.3