summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/cmake/test/add_subdir/CMakeLists.txt
blob: 132435833eed12d0eafe37e3edd13a654f14e2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2018-2021 Peter Dimov
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt

cmake_minimum_required(VERSION 3.5...3.20)

project(boost_add_sibdir_test LANGUAGES CXX)

include(CTest)

set(BOOST_INCLUDE_LIBRARIES timer)

add_subdirectory(../../../.. deps/boost)

add_executable(main main.cpp)
target_link_libraries(main Boost::timer)

add_test(NAME main COMMAND main)