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