2018-09-25 16:37:33 +02:00
|
|
|
# Copyright 2018 Mike Dev
|
2019-12-26 17:13:16 +02:00
|
|
|
# Copyright 2019 Peter Dimov
|
2018-09-25 16:37:33 +02:00
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
|
|
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
2019-12-27 04:19:00 +02:00
|
|
|
# We support CMake 3.5, but prefer 3.16 policies and behavior
|
2019-12-22 04:22:06 +02:00
|
|
|
cmake_minimum_required(VERSION 3.5...3.16)
|
2019-12-27 04:19:00 +02:00
|
|
|
|
2019-12-22 04:22:06 +02:00
|
|
|
project(boost_config VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
2018-09-14 15:00:28 +02:00
|
|
|
|
|
|
|
add_library(boost_config INTERFACE)
|
|
|
|
add_library(Boost::config ALIAS boost_config)
|
|
|
|
|
2019-12-26 17:13:16 +02:00
|
|
|
target_include_directories(boost_config INTERFACE include)
|