]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/any/CMakeLists.txt
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / any / 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.Mpl is currently experimental at best
6 # and the interface is likely to change in the future
7
8
9 cmake_minimum_required( VERSION 3.5 )
10 project( BoostAny LANGUAGES CXX )
11
12 add_library( boost_any INTERFACE )
13 add_library( Boost::any ALIAS boost_any )
14
15 target_include_directories( boost_any INTERFACE include )
16
17 target_link_libraries( boost_any
18 INTERFACE
19 Boost::config
20 Boost::core
21 Boost::static_assert
22 Boost::throw_exception
23 Boost::type_index
24 Boost::type_traits
25 )
26