-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy pathbuild.jam
60 lines (54 loc) · 2.23 KB
/
build.jam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# 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/algorithm//boost_algorithm
/boost/assert//boost_assert
/boost/bind//boost_bind
/boost/config//boost_config
/boost/core//boost_core
/boost/detail//boost_detail
/boost/exception//boost_exception
/boost/function//boost_function
/boost/io//boost_io
/boost/iterator//boost_iterator
/boost/mpl//boost_mpl
/boost/numeric_conversion//boost_numeric_conversion
/boost/optional//boost_optional
/boost/preprocessor//boost_preprocessor
/boost/smart_ptr//boost_smart_ptr
/boost/static_assert//boost_static_assert
/boost/type_traits//boost_type_traits
/boost/utility//boost_utility ;
project /boost/test
: common-requirements
<include>include
;
explicit
[ alias boost_test : : : : <library>$(boost_dependencies) ]
[ alias boost_prg_exec_monitor : build//boost_prg_exec_monitor ]
[ alias boost_test_exec_monitor : build//boost_test_exec_monitor ]
[ alias boost_unit_test_framework : build//boost_unit_test_framework ]
[ alias prg_exec_monitor : boost_prg_exec_monitor ]
[ alias test_exec_monitor : boost_test_exec_monitor ]
[ alias unit_test_framework : boost_unit_test_framework ]
[ alias boost_included_prg_exec_monitor : : : : <library>$(boost_dependencies) ]
[ alias boost_included_test_exec_monitor : : : : <library>$(boost_dependencies) ]
[ alias boost_included_unit_test_framework : : : : <library>$(boost_dependencies) ]
[ alias included : : : : <library>$(boost_dependencies) ]
[ alias included_prg_exec_monitor : boost_included_prg_exec_monitor ]
[ alias included_test_exec_monitor : boost_included_test_exec_monitor ]
[ alias included_unit_test_framework : boost_included_unit_test_framework ]
[ alias all : example test
boost_prg_exec_monitor
boost_test_exec_monitor
boost_unit_test_framework ]
;
call-if : boost-library test
: install
boost_prg_exec_monitor
boost_test_exec_monitor
boost_unit_test_framework
;