]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/fusion/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / fusion / CMakeLists.txt
1 # Copyright 2018 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_fusion VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
7
8 add_library(boost_fusion INTERFACE)
9 add_library(Boost::fusion ALIAS boost_fusion)
10
11 target_include_directories(boost_fusion INTERFACE include)
12
13 target_link_libraries(boost_fusion
14 INTERFACE
15 Boost::config
16 Boost::container_hash
17 Boost::core
18 Boost::function_types
19 Boost::mpl
20 Boost::preprocessor
21 Boost::static_assert
22 Boost::tuple
23 Boost::type_traits
24 Boost::typeof
25 Boost::utility
26 )