]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/mpl/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / mpl / 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_mpl VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX )
7
8 add_library( boost_mpl INTERFACE )
9 add_library( Boost::mpl ALIAS boost_mpl )
10
11 target_include_directories( boost_mpl INTERFACE include )
12
13 target_link_libraries( boost_mpl
14 INTERFACE
15 Boost::config
16 Boost::core
17 Boost::predef
18 Boost::preprocessor
19 Boost::static_assert
20 Boost::type_traits
21 Boost::utility
22 )