gtsam/gtsam_unstable/linear/tests/CMakeLists.txt

11 lines
375 B
CMake
Raw Normal View History

2023-01-21 02:23:26 +08:00
# if GTSAM_USE_BOOST_FEATURES is OFF then exclude some tests
if (NOT GTSAM_USE_BOOST_FEATURES)
# create a semicolon seperated list of files to exclude
set(EXCLUDE_TESTS "testQPSolver.cpp")
message(STATUS "Excluding ${EXCLUDE_TESTS}")
else()
set(EXCLUDE_TESTS "${EXCLUDE_TESTS}")
endif()
gtsamAddTestsGlob(linear_unstable "test*.cpp" "${EXCLUDE_TESTS}" "gtsam_unstable")