commit | 7d9e03ad5b34a6d65f19a5d971324e416344a96d | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Apr 25 04:59:35 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Apr 25 04:59:35 2010 +0000 |
tree | 085331c2d8601fd05d887a9ab0dcd7bd7dc07cab | |
parent | 9deb87a99654b9630a0624cc6cdc2b23a8285f9a [diff] |
exclude cmake build directories from being installed with "make install". Patch by Michael Forney! llvm-svn: 102299
diff --git a/clang/CMakeLists.txt b/clang/CMakeLists.txt index e91fb43..1be646d 100644 --- a/clang/CMakeLists.txt +++ b/clang/CMakeLists.txt
@@ -115,6 +115,7 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/ DESTINATION include FILES_MATCHING + PATTERN "CMakeFiles" EXCLUDE PATTERN "*.inc" )