11 lines
315 B
CMake
Raw Permalink Normal View History

2024-11-11 15:18:55 +01:00
cmake_minimum_required(VERSION 3.10)
2016-07-09 11:21:54 +02:00
project(TestFindBoostHeaders CXX)
include(CTest)
find_package(Boost REQUIRED)
add_executable(test_boost_headers_tgt main.cxx)
target_link_libraries(test_boost_headers_tgt
Boost::boost)
add_test(NAME test_boost_headers_tgt COMMAND test_boost_headers_tgt)