1# Copyright 2018, 2019 Peter Dimov 2# Distributed under the Boost Software License, Version 1.0. 3# http://www.boost.org/LICENSE_1_0.txt 4 5cmake_minimum_required(VERSION 3.5...3.16) 6 7project(boost_variant2 VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX) 8 9add_library(boost_variant2 INTERFACE) 10add_library(Boost::variant2 ALIAS boost_variant2) 11 12target_include_directories(boost_variant2 INTERFACE include) 13 14target_link_libraries(boost_variant2 15 INTERFACE 16 Boost::config 17 Boost::mp11 18) 19 20if(BUILD_TESTING) 21 22 add_subdirectory(test) 23 24endif() 25