]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/endian/CMakeLists.txt
6ec10174b462586d2726757b94da5af3b2a3b30a
[ceph.git] / ceph / src / boost / libs / endian / CMakeLists.txt
1 # Copyright 2019 Peter Dimov
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 cmake_minimum_required(VERSION 3.5...3.16)
6
7 project(boost_endian VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
8
9 add_library(boost_endian INTERFACE)
10 add_library(Boost::endian ALIAS boost_endian)
11
12 target_include_directories(boost_endian INTERFACE include)
13
14 target_link_libraries(boost_endian
15 INTERFACE
16 Boost::config
17 Boost::core
18 Boost::static_assert
19 Boost::type_traits
20 )
21
22 if(BOOST_SUPERPROJECT_VERSION)
23
24 include(BoostInstall)
25 boost_install(TARGETS boost_endian HEADER_DIRECTORY include/)
26
27 endif()
28
29 if(BUILD_TESTING)
30
31 add_subdirectory(test)
32
33 endif()