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
|
2021-01-27 08:56:59 +00:00
|
|
|
Boost::predef
|
|
|
|
Boost::assert
|
2019-12-28 13:51:31 +01:00
|
|
|
)
|
2018-10-02 22:04:12 +02:00
|
|
|
|