]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/variant/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / variant / CMakeLists.txt
CommitLineData
92f5a8d4
TL
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
92f5a8d4 4
1e59de90
TL
5cmake_minimum_required( VERSION 3.5...3.20 )
6project( boost_variant VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX )
92f5a8d4
TL
7
8add_library( boost_variant INTERFACE )
9add_library( Boost::variant ALIAS boost_variant )
10
11target_include_directories( boost_variant INTERFACE include )
12
13target_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)