CMakeLists.txt 231 B

123456
  1. set (Boost_USE_STATIC_LIBS OFF)
  2. find_package (Boost REQUIRED COMPONENTS unit_test_framework)
  3. include_directories (${Boost_INCLUDE_DIRS})
  4. add_executable (test_core core/main.cpp)
  5. target_link_libraries (test_core ${Boost_LIBRARIES})