[libcxx] r194838 - Add the CMakeLists.txt that was missed in r194825
Justin Bogner
mail at justinbogner.com
Fri Nov 15 10:34:43 PST 2013
Author: bogner
Date: Fri Nov 15 12:34:43 2013
New Revision: 194838
URL: http://llvm.org/viewvc/llvm-project?rev=194838&view=rev
Log:
Add the CMakeLists.txt that was missed in r194825
Added:
libcxx/trunk/include/CMakeLists.txt
Added: libcxx/trunk/include/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/CMakeLists.txt?rev=194838&view=auto
==============================================================================
--- libcxx/trunk/include/CMakeLists.txt (added)
+++ libcxx/trunk/include/CMakeLists.txt Fri Nov 15 12:34:43 2013
@@ -0,0 +1,16 @@
+if (NOT LIBCXX_INSTALL_SUPPORT_HEADERS)
+ set(LIBCXX_SUPPORT_HEADER_PATTERN PATTERN "support" EXCLUDE)
+endif()
+
+file(COPY .
+ DESTINATION "${CMAKE_BINARY_DIR}/include/c++/v1"
+ FILES_MATCHING
+ PATTERN "*"
+ PATTERN "CMakeLists.txt" EXCLUDE
+ PATTERN ".svn" EXCLUDE
+ ${LIBCXX_SUPPORT_HEADER_PATTERN}
+ )
+
+install(DIRECTORY "${CMAKE_BINARY_DIR}/include/c++/v1/"
+ DESTINATION include/c++/v1/
+ )
More information about the cfe-commits
mailing list