2014-11-22 05:04:12 +08:00
|
|
|
# Install headers
|
|
|
|
file(GLOB linear_headers "*.h")
|
2024-11-28 02:17:37 +08:00
|
|
|
if(QNX)
|
|
|
|
install(FILES ${linear_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/gtsam_unstable/linear)
|
|
|
|
else()
|
|
|
|
install(FILES ${linear_headers} DESTINATION include/gtsam_unstable/linear)
|
|
|
|
endif()
|
2014-11-22 05:04:12 +08:00
|
|
|
|
|
|
|
# Add all tests
|
|
|
|
add_subdirectory(tests)
|