9 lines
No EOL
301 B
CMake
9 lines
No EOL
301 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)
|
|
#target_link_libraries(testsuite core) |