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(BoostDetail LANGUAGES CXX) 12 13add_library(boost_detail INTERFACE) 14add_library(Boost::detail ALIAS boost_detail) 15 16target_include_directories(boost_detail INTERFACE include) 17 18target_link_libraries(boost_detail 19 INTERFACE 20 Boost::config 21 Boost::core 22 Boost::preprocessor 23 Boost::static_assert 24 Boost::type_traits 25) 26