Fixed install path issue with subfolder

release/4.3a0
Alex Cunningham 2013-11-08 14:44:42 +00:00
parent 0e95ca0096
commit 8ee0342f7a
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
# Install headers
file(GLOB base_headers "*.h" "treeTraversal/*.h")
file(GLOB base_headers "*.h")
install(FILES ${base_headers} DESTINATION include/gtsam/base)
file(GLOB base_headers_tree "treeTraversal/*.h")
install(FILES ${base_headers_tree} DESTINATION include/gtsam/base/treeTraversal)
# Files to exclude from compilation of tests and timing scripts
set(base_excluded_files
# "${CMAKE_CURRENT_SOURCE_DIR}/tests/testTypedDiscreteFactor.cpp" # Example of excluding a test