]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/regex/test/cmake_subdir_test/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / regex / test / cmake_subdir_test / CMakeLists.txt
1 # Copyright 2018, 2019 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.16)
6
7 project(cmake_subdir_test LANGUAGES CXX)
8
9 add_subdirectory(../.. boostorg/reegx)
10 add_subdirectory(../../../config boostorg/config)
11 add_subdirectory(../../../core boostorg/core)
12 add_subdirectory(../../../assert boostorg/assert)
13 add_subdirectory(../../../static_assert boostorg/static_assert)
14 add_subdirectory(../../../throw_exception boostorg/throw_exception)
15 add_subdirectory(../../../predef boostorg/predef)
16
17 add_executable(quick ../quick.cpp)
18 target_link_libraries(quick Boost::regex Boost::core)
19
20 enable_testing()
21 add_test(quick quick)
22
23 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)