]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/intrusive/CMakeLists.txt
15f4a41274e0fd15a8f179064161c248e0c0064a
[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 cmake_minimum_required( VERSION 3.5...3.20 )
6
7 project( boost_intrusive VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX )
8
9 add_library( boost_intrusive INTERFACE )
10 add_library( Boost::intrusive ALIAS boost_intrusive )
11
12 target_include_directories( boost_intrusive INTERFACE include )
13
14 target_link_libraries( boost_intrusive
15 INTERFACE
16 Boost::assert
17 Boost::config
18 Boost::container_hash
19 Boost::core
20 Boost::move
21 Boost::static_assert
22 )