Include *.inc in install target

Fixes PR6755.

llvm-svn: 100105
This commit is contained in:
Kovarththanan Rajaratnam 2010-04-01 14:24:41 +00:00
parent 1e8ee79957
commit 8841e86d11
1 changed files with 6 additions and 0 deletions

View File

@ -92,6 +92,12 @@ install(DIRECTORY include/
PATTERN ".svn" EXCLUDE
)
install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
DESTINATION include
FILES_MATCHING
PATTERN "*.inc"
)
add_definitions( -D_GNU_SOURCE )
option(CLANG_BUILD_EXAMPLES "Build CLANG example programs." OFF)