]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/variant/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / variant / 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 project( boost_variant VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX )
7
8 add_library( boost_variant INTERFACE )
9 add_library( Boost::variant ALIAS boost_variant )
10
11 target_include_directories( boost_variant INTERFACE include )
12
13 target_link_libraries( boost_variant
14 INTERFACE
15 Boost::assert
16 Boost::bind
17 Boost::config
18 Boost::container_hash
19 Boost::core
20 Boost::detail
21 Boost::integer
22 Boost::move
23 Boost::mpl
24 Boost::preprocessor
25 Boost::static_assert
26 Boost::throw_exception
27 Boost::type_index
28 Boost::type_traits
29 Boost::utility
30 )