• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 https://www.boost.org/LICENSE_1_0.txt
4#
5# Partial (add_subdirectory only) and experimental CMake support
6# Subject to change; please do not rely on the contents of this file yet
7
8cmake_minimum_required(VERSION 3.5)
9project(BoostFusion LANGUAGES CXX)
10
11add_library(boost_fusion INTERFACE)
12add_library(Boost::fusion ALIAS boost_fusion)
13
14target_include_directories(boost_fusion INTERFACE include)
15
16target_link_libraries(boost_fusion
17    INTERFACE
18        Boost::config
19        Boost::container_hash
20        Boost::core
21        Boost::function_types
22        Boost::mpl
23        Boost::preprocessor
24        Boost::static_assert
25        Boost::tuple
26        Boost::type_traits
27        Boost::typeof
28        Boost::utility
29)
30