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(BoostUtility LANGUAGES CXX) 12 13add_library(boost_utility INTERFACE) 14add_library(Boost::utility ALIAS boost_utility) 15 16target_include_directories(boost_utility INTERFACE include) 17 18target_link_libraries(boost_utility 19 INTERFACE 20 Boost::config 21 Boost::container_hash 22 Boost::core 23 Boost::io 24 Boost::preprocessor 25 Boost::static_assert 26 Boost::throw_exception 27 Boost::type_traits 28) 29