From bf148972a3dc2cd0c83d40ea404eff07aa254e9a Mon Sep 17 00:00:00 2001 From: Raimar Sandner Date: Tue, 27 Oct 2015 17:44:02 +0100 Subject: [PATCH] instalation of header files in cxxstd --- CMakeLists.txt | 1 + cxxstd/CMakeLists.txt | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 cxxstd/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 455d9e25..11d5fbee 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,5 +6,6 @@ set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "Include fi add_subdirectory(cxxblas) add_subdirectory(cxxlapack) +add_subdirectory(cxxstd) add_subdirectory(flens) add_subdirectory(external) diff --git a/cxxstd/CMakeLists.txt b/cxxstd/CMakeLists.txt new file mode 100644 index 00000000..18b62b54 --- /dev/null +++ b/cxxstd/CMakeLists.txt @@ -0,0 +1,4 @@ +install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} DESTINATION ${INCLUDE_INSTALL_DIR} + FILES_MATCHING + PATTERN "*.h" + )