blob: cc49eb7139125ea6a6165aae8a87c0628c484480 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Distributed under the Boost Software License, Version 1.0.
# See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
cmake_minimum_required(VERSION 3.5)
project(BoostOutcome LANGUAGES CXX)
add_library(boost_outcome INTERFACE)
add_library(Boost::outcome ALIAS boost_outcome)
target_include_directories(boost_outcome INTERFACE include)
target_link_libraries(boost_outcome INTERFACE
Boost::config
Boost::exception
Boost::system
)
|