2012-05-15 08:47:19 +08:00
|
|
|
# Install headers
|
|
|
|
file(GLOB discrete_headers "*.h")
|
2025-01-10 23:20:50 +08:00
|
|
|
if(QNX)
|
|
|
|
install(FILES ${discrete_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/gtsam_unstable/discrete)
|
|
|
|
else()
|
|
|
|
install(FILES ${discrete_headers} DESTINATION include/gtsam_unstable/discrete)
|
|
|
|
endif()
|
2012-05-15 08:47:19 +08:00
|
|
|
|
|
|
|
# Add all tests
|
2014-02-13 14:34:31 +08:00
|
|
|
add_subdirectory(tests)
|
2012-05-15 08:47:19 +08:00
|
|
|
|
2014-02-14 02:24:14 +08:00
|
|
|
# Add examples
|
|
|
|
add_subdirectory(examples)
|