mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2025-02-05 19:37:06 +00:00
![David Fang](/assets/img/avatar_default.png)
Patch by Ryuta Suzuki git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@211629 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
350 B
CMake
14 lines
350 B
CMake
if (NOT LIBCXX_INSTALL_SUPPORT_HEADERS)
|
|
set(LIBCXX_SUPPORT_HEADER_PATTERN PATTERN "support" EXCLUDE)
|
|
endif()
|
|
|
|
install(DIRECTORY .
|
|
DESTINATION include/c++/v1
|
|
FILES_MATCHING
|
|
PATTERN "*"
|
|
PATTERN "CMakeLists.txt" EXCLUDE
|
|
PATTERN ".svn" EXCLUDE
|
|
${LIBCXX_SUPPORT_HEADER_PATTERN}
|
|
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ
|
|
)
|