• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5cmake_minimum_required(VERSION 3.5...3.16)
6
7project(boost_endian VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
8
9add_library(boost_endian INTERFACE)
10add_library(Boost::endian ALIAS boost_endian)
11
12target_include_directories(boost_endian INTERFACE include)
13
14target_link_libraries(boost_endian
15  INTERFACE
16    Boost::config
17    Boost::core
18    Boost::static_assert
19    Boost::type_traits
20)
21
22if(BUILD_TESTING)
23
24  add_subdirectory(test)
25
26endif()
27