]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/smart_ptr/CMakeLists.txt
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / smart_ptr / 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 http://www.boost.org/LICENSE_1_0.txt
4
5 # Partial (add_subdirectory only) and experimental CMake support
6 # Subject to change; please do not rely on the contents of this file yet
7
8 cmake_minimum_required(VERSION 3.5)
9 project(BoostSmartPtr LANGUAGES CXX)
10
11 add_library(boost_smart_ptr INTERFACE)
12 add_library(Boost::smart_ptr ALIAS boost_smart_ptr)
13
14 target_include_directories(boost_smart_ptr INTERFACE include)
15
16 target_link_libraries(boost_smart_ptr
17 INTERFACE
18 Boost::assert
19 Boost::config
20 Boost::core
21 Boost::move
22 Boost::predef
23 Boost::static_assert
24 Boost::throw_exception
25 Boost::type_traits
26 )