]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/detail/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / detail / 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_detail VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
92f5a8d4
TL
9
10add_library(boost_detail INTERFACE)
11add_library(Boost::detail ALIAS boost_detail)
12
13target_include_directories(boost_detail INTERFACE include)
14
15target_link_libraries(boost_detail
16 INTERFACE
17 Boost::config
18 Boost::core
19 Boost::preprocessor
20 Boost::static_assert
21 Boost::type_traits
22)