fixes duplicate header installation

http://llvm.org/bugs/show_bug.cgi?id=18681
Patch by Ryuta Suzuki <oroppas gmail com>

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@210577 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Fang 2014-06-10 20:26:54 +00:00
parent 675dd5cc4f
commit 0bd40d6c3d

View File

@ -123,13 +123,9 @@ macro(setup_abi_lib abipathvar abidefines abilibs abifiles abidirs)
message(FATAL_ERROR "Failed to find ${fpath}")
endif()
endforeach()
add_custom_target(abilib_headers DEPENDS ${LIBCXX_CXX_ABI_DEPS})
set(LIBCXX_CXX_ABI_DEPS abilib_headers)
include_directories("${CMAKE_BINARY_DIR}/include")
install(DIRECTORY "${CMAKE_BINARY_DIR}/include/"
install(FILES ${LIBCXX_CXX_ABI_DEPS}
DESTINATION include/c++/v1
FILES_MATCHING
PATTERN "*"
)
endmacro()