1# Copyright 2018 Mike Dev 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# 5# NOTE: CMake support for Boost.Tuple is currently experimental at best 6# and the interface is likely to change in the future 7 8cmake_minimum_required(VERSION 3.5) 9project(BoostTuple) 10 11add_library(boost_tuple INTERFACE) 12add_library(Boost::tuple ALIAS boost_tuple) 13 14target_include_directories(boost_tuple INTERFACE include) 15 16target_link_libraries(boost_tuple 17 INTERFACE 18 Boost::config 19 Boost::core 20 Boost::static_assert 21 Boost::type_traits 22) 23