[cfe-commits] r102299 - /cfe/trunk/CMakeLists.txt

Chris Lattner sabre at nondot.org
Sat Apr 24 21:59:35 PDT 2010


Author: lattner
Date: Sat Apr 24 23:59:35 2010
New Revision: 102299

URL: http://llvm.org/viewvc/llvm-project?rev=102299&view=rev
Log:
exclude cmake build directories from being installed
with "make install".  Patch by Michael Forney!


Modified:
    cfe/trunk/CMakeLists.txt

Modified: cfe/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/CMakeLists.txt?rev=102299&r1=102298&r2=102299&view=diff
==============================================================================
--- cfe/trunk/CMakeLists.txt (original)
+++ cfe/trunk/CMakeLists.txt Sat Apr 24 23:59:35 2010
@@ -115,6 +115,7 @@
 install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/include/
   DESTINATION include
   FILES_MATCHING
+  PATTERN "CMakeFiles" EXCLUDE
   PATTERN "*.inc"
   )
 





More information about the cfe-commits mailing list