]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/move/CMakeLists.txt
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / move / CMakeLists.txt
CommitLineData
92f5a8d4
TL
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# NOTE: CMake support for Boost.Move is currently experimental at best
6# and the interface is likely to change in the future
7
8cmake_minimum_required(VERSION 3.5)
9project(BoostMove LANGUAGES CXX)
10
11add_library(boost_move INTERFACE)
12add_library(Boost::move ALIAS boost_move)
13
14target_include_directories(boost_move INTERFACE include)
15
16target_link_libraries(boost_move
17 INTERFACE
18 Boost::assert
19 Boost::config
20 Boost::core
21 Boost::static_assert
22)
23