2014-02-21 03:36:14 +08:00
|
|
|
# Install headers
|
|
|
|
file(GLOB partition_headers "*.h")
|
2025-01-10 23:20:50 +08:00
|
|
|
if(QNX)
|
|
|
|
install(FILES ${partition_headers} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/gtsam_unstable/partition)
|
|
|
|
else()
|
|
|
|
install(FILES ${partition_headers} DESTINATION include/gtsam_unstable/partition)
|
|
|
|
endif()
|
2014-02-21 03:36:14 +08:00
|
|
|
|
2014-06-08 10:01:13 +08:00
|
|
|
add_subdirectory(tests)
|