outcome/CMakeLists.txt
Niall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) a15b08b391
Dewhitelist various Boost.Outcome test failures which no longer occur.
2019-11-19 11:56:48 +00:00

17 lines
470 B
CMake

# 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
)