1# Copyright 2018 Peter Dimov 2# Copyright 2018 Andrey Semashev 3# Distributed under the Boost Software License, Version 1.0. 4# See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt 5 6# Partial (add_subdirectory only) and experimental CMake support 7# Subject to change; please do not rely on the contents of this file yet. 8 9cmake_minimum_required(VERSION 3.5) 10 11project(BoostInteger LANGUAGES CXX) 12 13add_library(boost_integer INTERFACE) 14add_library(Boost::integer ALIAS boost_integer) 15 16target_include_directories(boost_integer INTERFACE include) 17 18target_link_libraries(boost_integer 19 INTERFACE 20 Boost::assert 21 Boost::config 22 Boost::core 23 Boost::static_assert 24 Boost::throw_exception 25) 26