]> granicus.if.org Git - clang/commitdiff
Rather than excluding quite some things, and still installing
authorOscar Fuentes <ofv@wanadoo.es>
Tue, 27 Oct 2009 19:59:34 +0000 (19:59 +0000)
committerOscar Fuentes <ofv@wanadoo.es>
Tue, 27 Oct 2009 19:59:34 +0000 (19:59 +0000)
CMakeLists.txt, Makefiles, ... it's better to whitelist what we really
want to install.

Patch by Ingmar Vanhassel!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85283 91177308-0d34-0410-b5e6-96231b3b80d8

CMakeLists.txt

index 56212f1639f4d55888e57fbc4267fb07d43e27fa..7f4ab33b33a4a3901e9e962905f5161e272f9461 100644 (file)
@@ -83,8 +83,12 @@ include_directories(
   ${CMAKE_CURRENT_BINARY_DIR}/include
   )
 
-install(DIRECTORY include
-  DESTINATION .
+install(DIRECTORY include/
+  DESTINATION include
+  FILES_MATCHING
+  PATTERN "*.def"
+  PATTERN "*.h"
+  PATTERN "*.td"
   PATTERN ".svn" EXCLUDE
   )