]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/throw_exception/test/cmake_install_test/CMakeLists.txt
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / throw_exception / test / cmake_install_test / CMakeLists.txt
1 # Copyright 2018 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_install_test LANGUAGES CXX)
8
9 find_package(boost_throw_exception REQUIRED)
10
11 add_executable(main main.cpp)
12 target_link_libraries(main Boost::throw_exception)
13
14 enable_testing()
15 add_test(NAME main COMMAND main)
16
17 add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)