8 lines
263 B
CMake
8 lines
263 B
CMake
enable_testing()
|
|
|
|
find_package(Boost COMPONENTS filesystem unit_test_framework REQUIRED)
|
|
|
|
set(TEST_SOURCES test_seller.cpp)
|
|
|
|
add_executable(testsuite ${TEST_SOURCES})
|
|
target_link_libraries(testsuite core Boost::boost Boost::filesystem Boost::unit_test_framework)
|