2012-06-15 04:00:51 +08:00
|
|
|
# Install headers
|
2013-06-20 01:50:09 +08:00
|
|
|
set (slam_excluded_headers #"")
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/serialization.h"
|
|
|
|
)
|
|
|
|
|
2012-06-15 04:00:51 +08:00
|
|
|
file(GLOB slam_headers "*.h")
|
2013-06-20 01:50:09 +08:00
|
|
|
list(REMOVE_ITEM slam_headers ${slam_excluded_headers})
|
2025-01-16 22:57:29 +08:00
|
|
|
install(FILES ${slam_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/gtsam_unstable/slam)
|
2012-06-15 04:00:51 +08:00
|
|
|
|
|
|
|
# Add all tests
|
2014-02-13 14:34:31 +08:00
|
|
|
add_subdirectory(tests)
|