]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/tuple/CMakeLists.txt
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / tuple / CMakeLists.txt
CommitLineData
f67539c2
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
f67539c2 4
1e59de90
TL
5cmake_minimum_required(VERSION 3.5...3.20)
6project(boost_tuple VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
f67539c2
TL
7
8add_library(boost_tuple INTERFACE)
9add_library(Boost::tuple ALIAS boost_tuple)
10
11target_include_directories(boost_tuple INTERFACE include)
12
13target_link_libraries(boost_tuple
14 INTERFACE
15 Boost::config
16 Boost::core
17 Boost::static_assert
18 Boost::type_traits
19)