CMakeLists.txt 314 B

12345678910
  1. cmake_minimum_required(VERSION 3.1)
  2. project(TestFindBoostHeaders CXX)
  3. include(CTest)
  4. find_package(Boost REQUIRED)
  5. add_executable(test_boost_headers_tgt main.cxx)
  6. target_link_libraries(test_boost_headers_tgt
  7. Boost::boost)
  8. add_test(NAME test_boost_headers_tgt COMMAND test_boost_headers_tgt)