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