]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/type_traits/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / type_traits / CMakeLists.txt
1 # Copyright 2018 Mike Dev
2 # Copyright 2019 Peter Dimov
3 # Distributed under the Boost Software License, Version 1.0.
4 # See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
5
6 # We support CMake 3.5, but prefer 3.16 policies and behavior
7 cmake_minimum_required(VERSION 3.5...3.16)
8
9 project(boost_type_traits VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
10
11 add_library(boost_type_traits INTERFACE)
12 add_library(Boost::type_traits ALIAS boost_type_traits)
13
14 target_include_directories(boost_type_traits INTERFACE include)
15
16 target_link_libraries(boost_type_traits
17 INTERFACE
18 Boost::config
19 Boost::static_assert
20 )