]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/describe/test/cmake_subdir_test/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / describe / test / cmake_subdir_test / CMakeLists.txt
1 # Copyright 2018-2022 Peter Dimov
2 # Distributed under the Boost Software License, Version 1.0.
3 # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
4
5 cmake_minimum_required(VERSION 3.5...3.20)
6
7 project(cmake_subdir_test LANGUAGES CXX)
8
9 add_subdirectory(../.. boostorg/describe)
10 add_subdirectory(../../../assert boostorg/assert)
11 add_subdirectory(../../../config boostorg/config)
12 add_subdirectory(../../../core boostorg/core)
13 add_subdirectory(../../../mp11 boostorg/mp11)
14 add_subdirectory(../../../static_assert boostorg/static_assert)
15 add_subdirectory(../../../throw_exception boostorg/throw_exception)
16
17 add_executable(quick ../quick.cpp)
18 target_link_libraries(quick Boost::describe Boost::core)
19
20 enable_testing()
21 add_test(quick quick)
22
23 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure --no-tests=error -C $<CONFIG>)