aboutsummaryrefslogtreecommitdiffhomepage
path: root/tvmet-1.7.1/include
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-05-30 06:57:40 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2007-05-30 06:57:40 +0000
commit47b935fc42cbf2ca992d8a270bc1b0fc97d1f6bc (patch)
tree81766357614fec6932ac833c262ce308cce2582f /tvmet-1.7.1/include
parent3036eeca0abfee39d2a0feab4ae3ff1d28975999 (diff)
add initial CMakeLists
Diffstat (limited to 'tvmet-1.7.1/include')
-rw-r--r--tvmet-1.7.1/include/CMakeLists.txt1
-rw-r--r--tvmet-1.7.1/include/tvmet/CMakeLists.txt10
2 files changed, 11 insertions, 0 deletions
diff --git a/tvmet-1.7.1/include/CMakeLists.txt b/tvmet-1.7.1/include/CMakeLists.txt
new file mode 100644
index 000000000..437795d71
--- /dev/null
+++ b/tvmet-1.7.1/include/CMakeLists.txt
@@ -0,0 +1 @@
+add_subdirectory(tvmet) \ No newline at end of file
diff --git a/tvmet-1.7.1/include/tvmet/CMakeLists.txt b/tvmet-1.7.1/include/tvmet/CMakeLists.txt
new file mode 100644
index 000000000..c47c07681
--- /dev/null
+++ b/tvmet-1.7.1/include/tvmet/CMakeLists.txt
@@ -0,0 +1,10 @@
+# the following are directories where stuff will be installed to
+set(INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include" CACHE PATH "The subdirectory to the header prefix" FORCE)
+
+FILE(GLOB gmm_header_SRCS "*.h")
+
+install(FILES
+ ${gmm_header_SRCS}
+ DESTINATION ${INCLUDE_INSTALL_DIR}/tvmet
+ )
+