summaryrefslogtreecommitdiff
path: root/Tests/FindBoost/TestHeaders/CMakeLists.txt
blob: 7dd12e9bb35fc33cea3140536fd73b227b55dfb7 (plain)
1
2
3
4
5
6
7
8
9
10
cmake_minimum_required(VERSION 3.5)
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)