]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/utility/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / utility / CMakeLists.txt
CommitLineData
92f5a8d4
TL
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
1e59de90 6cmake_minimum_required(VERSION 3.5...3.20)
92f5a8d4 7
1e59de90 8project(boost_utility VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
92f5a8d4
TL
9
10add_library(boost_utility INTERFACE)
11add_library(Boost::utility ALIAS boost_utility)
12
13target_include_directories(boost_utility INTERFACE include)
14
15target_link_libraries(boost_utility
16 INTERFACE
17 Boost::config
92f5a8d4 18 Boost::core
20effc67 19 Boost::io
92f5a8d4
TL
20 Boost::preprocessor
21 Boost::static_assert
22 Boost::throw_exception
23 Boost::type_traits
24)