]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/intrusive/CMakeLists.txt
3ab541fd4a079f56c1d7753138f35b4930ca160c
[ceph.git] / ceph / src / boost / libs / intrusive / CMakeLists.txt
1 # Copyright 2019 Mike Dev
2 # Distributed under the Boost Software License, Version 1.0.
3 # See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
4 #
5 # NOTE: CMake support for Boost.Intrusive is currently experimental at best
6 # and the interface is likely to change in the future
7
8 cmake_minimum_required( VERSION 3.5 )
9
10 project( Boost.Intrusive LANGUAGES CXX )
11
12 add_library (boost_intrusive INTERFACE )
13 add_library( Boost::intrusive ALIAS boost_intrusive )
14
15 target_include_directories( boost_intrusive INTERFACE include )
16
17 target_link_libraries( boost_intrusive
18 INTERFACE
19 Boost::assert
20 Boost::config
21 Boost::container_hash
22 Boost::core
23 Boost::move
24 Boost::static_assert
25 )