2021-01-25 16:51:10 +00:00
|
|
|
# Copyright 2018 Mike Dev
|
|
|
|
# Copyright 2019 Peter Dimov
|
2018-10-02 22:04:12 +02:00
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
2021-01-25 16:51:10 +00:00
|
|
|
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
|
2018-10-02 22:04:12 +02:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
# We support CMake 3.5, but prefer 3.16 policies and behavior
|
|
|
|
cmake_minimum_required(VERSION 3.5...3.16)
|
2019-12-28 13:52:21 +01:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
project(boost_regex VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
2019-12-28 13:52:21 +01:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
add_library(boost_regex INTERFACE)
|
|
|
|
add_library(Boost::regex ALIAS boost_regex)
|
2019-12-28 13:52:21 +01:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
target_include_directories(boost_regex INTERFACE include)
|
2019-12-28 13:52:21 +01:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
target_link_libraries(boost_regex
|
|
|
|
INTERFACE
|
|
|
|
Boost::config
|
|
|
|
Boost::throw_exception
|
2019-12-28 13:51:31 +01:00
|
|
|
)
|
2018-10-02 22:04:12 +02:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
# boost_install requires PROJECT_VERSION
|
|
|
|
# Without the superproject, we don't have any, so skip installation
|
2019-06-16 19:47:22 +02:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
if(BOOST_SUPERPROJECT_VERSION)
|
2019-12-08 16:21:30 +01:00
|
|
|
|
2021-01-25 16:51:10 +00:00
|
|
|
include(BoostInstall)
|
|
|
|
boost_install(TARGETS boost_regex HEADER_DIRECTORY include/)
|
2019-12-08 16:21:30 +01:00
|
|
|
|
2019-06-16 19:47:22 +02:00
|
|
|
endif()
|