]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/type_index/CMakeLists.txt
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / type_index / 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.TypeIndex 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 project(Boost.TypeIndex)
10
11 add_library(boost_type_index INTERFACE)
12 add_library(Boost::type_index ALIAS boost_type_index)
13
14 target_include_directories(boost_type_index INTERFACE include)
15
16 target_link_libraries(boost_type_index
17 INTERFACE
18 Boost::config
19 Boost::container_hash
20 Boost::core
21 Boost::preprocessor
22 Boost::smart_ptr
23 Boost::static_assert
24 Boost::throw_exception
25 Boost::type_traits
26 )