Files
io/CMakeLists.txt

18 lines
436 B
CMake
Raw Permalink Normal View History

# 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)
2021-06-10 00:57:45 +03:00
cmake_minimum_required(VERSION 3.5...3.20)
2021-06-10 00:57:45 +03:00
project(boost_io VERSION "${BOOST_SUPERPROJECT_VERSION}" LANGUAGES CXX)
2019-12-23 21:24:28 -05:00
add_library(boost_io INTERFACE)
add_library(Boost::io ALIAS boost_io)
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
)