kima2/test/CMakeLists.txt

8 lines
215 B
CMake
Raw Normal View History

enable_testing()
find_package(Boost COMPONENTS unit_test_framework REQUIRED)
set(TEST_SOURCES test_seller.cpp)
add_executable(testsuite ${TEST_SOURCES})
target_link_libraries(testsuite Boost::unit_test_framework)