2
0
mirror of https://github.com/boostorg/outcome.git synced 2026-01-19 04:22:13 +00:00
Files
outcome/build.jam
Niall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) 0569e0c14b Merging commit ned14/outcome@16cbe6776d:
Port https://github.com/boostorg/outcome/pull/7 to standalone Outcome.
2024-09-04 17:19:38 +00:00

27 lines
682 B
Plaintext

# Copyright René Ferdinand Rivera Morell 2023-2024
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
require-b2 5.2 ;
constant boost_dependencies :
/boost/assert//boost_assert
/boost/config//boost_config
/boost/exception//boost_exception
/boost/system//boost_system
/boost/throw_exception//boost_throw_exception ;
project /boost/outcome
: common-requirements
<include>include
;
explicit
[ alias boost_outcome : : : : <library>$(boost_dependencies) ]
[ alias all : boost_outcome test ]
;
call-if : boost-library outcome
;