2018-09-22 22:33:21 +02:00
|
|
|
# Copyright 2018 Mike Dev
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
2019-12-23 21:24:28 -05:00
|
|
|
# (http://www.boost.org/LICENSE_1_0.txt)
|
2018-09-22 22:33:21 +02:00
|
|
|
|
2021-06-10 00:57:45 +03:00
|
|
|
cmake_minimum_required(VERSION 3.5...3.20)
|
2018-09-22 22:33:21 +02:00
|
|
|
|
2021-06-10 00:57:45 +03:00
|
|
|
project(boost_io VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
|
2018-09-22 22:33:21 +02:00
|
|
|
|
2019-12-23 21:24:28 -05:00
|
|
|
add_library(boost_io INTERFACE)
|
|
|
|
add_library(Boost::io ALIAS boost_io)
|
2018-09-22 22:33:21 +02:00
|
|
|
|
2019-12-23 21:24:28 -05:00
|
|
|
target_include_directories(boost_io INTERFACE include)
|
|
|
|
|
2021-06-10 00:57:45 +03:00
|
|
|
target_link_libraries(boost_io
|
|
|
|
INTERFACE
|
|
|
|
Boost::config
|
|
|
|
)
|