]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/system/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / system / CMakeLists.txt
1 # Copyright 2018-2021 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(boost_system VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
8
9 add_library(boost_system INTERFACE)
10 add_library(Boost::system ALIAS boost_system)
11
12 target_include_directories(boost_system INTERFACE include)
13
14 target_link_libraries(boost_system
15 INTERFACE
16 Boost::assert
17 Boost::config
18 Boost::throw_exception
19 Boost::variant2
20 Boost::winapi
21 )
22
23 if(BUILD_TESTING)
24
25 add_subdirectory(test)
26
27 endif()