]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/utility/CMakeLists.txt
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / utility / CMakeLists.txt
1 # Copyright 2018 Peter Dimov
2 # Copyright 2018 Andrey Semashev
3 # Distributed under the Boost Software License, Version 1.0.
4 # See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
5
6 # Partial (add_subdirectory only) and experimental CMake support
7 # Subject to change; please do not rely on the contents of this file yet.
8
9 cmake_minimum_required(VERSION 3.5)
10
11 project(BoostUtility LANGUAGES CXX)
12
13 add_library(boost_utility INTERFACE)
14 add_library(Boost::utility ALIAS boost_utility)
15
16 target_include_directories(boost_utility INTERFACE include)
17
18 target_link_libraries(boost_utility
19 INTERFACE
20 Boost::config
21 Boost::container_hash
22 Boost::core
23 Boost::io
24 Boost::preprocessor
25 Boost::static_assert
26 Boost::throw_exception
27 Boost::type_traits
28 )