kima2/test/CMakeLists.txt

9 lines
263 B
CMake
Raw Normal View History

enable_testing()
2018-07-09 16:56:06 +02:00
find_package(Boost COMPONENTS filesystem unit_test_framework REQUIRED)
set(TEST_SOURCES test_seller.cpp)
add_executable(testsuite ${TEST_SOURCES})
2018-07-09 16:56:06 +02:00
target_link_libraries(testsuite core Boost::boost Boost::filesystem Boost::unit_test_framework)