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(BoostIterator LANGUAGES CXX) 12 13add_library(boost_iterator INTERFACE) 14add_library(Boost::iterator ALIAS boost_iterator) 15 16target_include_directories(boost_iterator INTERFACE include) 17 18target_link_libraries(boost_iterator 19 INTERFACE 20 Boost::assert 21 Boost::concept_check 22 Boost::config 23 Boost::conversion 24 Boost::core 25 Boost::detail 26 Boost::function_types 27 Boost::fusion 28 Boost::mpl 29 Boost::optional 30 Boost::smart_ptr 31 Boost::static_assert 32 Boost::type_traits 33 Boost::utility 34) 35