File: Jamfile.v2

package info (click to toggle)
boost1.90 1.90.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 593,120 kB
  • sloc: cpp: 4,190,908; xml: 196,648; python: 34,618; ansic: 23,145; asm: 5,468; sh: 3,774; makefile: 1,161; perl: 1,020; sql: 728; ruby: 676; yacc: 478; java: 77; lisp: 24; csh: 6
file content (106 lines) | stat: -rw-r--r-- 4,343 bytes parent folder | download | duplicates (5)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# Boost.Optional Library test Jamfile
#
# Copyright (C) 2003, Fernando Luis Cacciola Carballal.
# Copyright (C) 2014 - 2017 Andrzej Krzemienski
# Copyright (C) 2024 Alexander Grund
#
# Use, modification, and distribution is subject to 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)
#
# See http://www.boost.org/libs/optional for documentation.
#
# You are welcome to contact the author at:
#  akrzemi1@gmail.com
#

import config : requires ;
import testing ;

project
    : requirements
        <library>/boost/optional//boost_optional
        [ requires
            cxx11_decltype
            cxx11_defaulted_functions
            cxx11_defaulted_moves
            cxx11_deleted_functions
            cxx11_explicit_conversion_operators
#            cxx11_noexcept
            cxx11_rvalue_references
            cxx11_static_assert
            cxx11_variadic_templates
        ]
    ;


run optional_test.cpp : : : <library>/boost/bind//boost_bind ;
run optional_test_assign.cpp ;
run optional_test_swap.cpp ;
compile optional_test_wuninitialized.cpp ;
run optional_test_conversions_from_U.cpp ;
run optional_test_convert_from_T.cpp ;
run optional_test_convert_assign.cpp ;
run optional_test_empty_braces.cpp ;
run optional_test_make_optional.cpp ;
run optional_test_flat_map.cpp ;
run optional_test_hash.cpp ;
run optional_test_map.cpp ;
run optional_test_tie.cpp : : : <library>/boost/tuple//boost_tuple ;
run optional_test_ref_assign_portable_minimum.cpp ;
run optional_test_ref_assign_mutable_int.cpp ;
run optional_test_ref_assign_const_int.cpp ;
run optional_test_ref_converting_ctor.cpp ;
run optional_test_ref_convert_assign_non_int.cpp ;
run optional_test_ref_convert_assign_mutable_int.cpp ;
run optional_test_ref_convert_assign_const_int.cpp ;
run optional_test_ref_portable_minimum.cpp ;
run optional_test_ref_move.cpp ;
run optional_test_ref_to_val.cpp ;
run optional_test_inplace_factory.cpp ;
run optional_test_io.cpp ;
run optional_test_move.cpp ;
run optional_test_noexcept_move.cpp ;
run optional_test_cmp_none.cpp ;
run optional_test_value_access.cpp ;
run optional_test_emplace.cpp ;
run optional_test_minimum_requirements.cpp ;
run optional_test_msvc_bug_workaround.cpp ;
run optional_test_member_T.cpp ;
run optional_test_tc_base.cpp ;
compile optional_test_sfinae_friendly_ctor.cpp ;
compile optional_test_path_assignment.cpp ;
compile-fail optional_test_fail_const_swap.cpp ;
compile-fail optional_test_ref_convert_assign_const_int_prevented.cpp ;
compile-fail optional_test_fail1.cpp ;
compile-fail optional_test_fail3a.cpp ;
compile-fail optional_test_fail3b.cpp ;
compile-fail optional_test_ref_fail1.cpp ;
compile-fail optional_test_ref_fail3.cpp ;
compile-fail optional_test_ref_fail4.cpp ;
compile-fail optional_test_inplace_fail.cpp ;
compile-fail optional_test_inplace_fail2.cpp ;
compile-fail optional_test_fail_implicit_bool_convert.cpp ;
compile-fail optional_test_fail_copying_a_moveable_type.cpp ;
compile-fail optional_test_fail_optional_rvalue_ref.cpp ;
compile-fail optional_test_ref_fail_init_from_Trefref.cpp ;
compile-fail optional_test_ref_fail_init_from_Urefref.cpp ;
compile-fail optional_test_ref_fail_assign_from_Trefref.cpp ;
compile-fail optional_test_ref_fail_assign_from_Urefref.cpp ;
compile-fail optional_test_fail_convert_from_null.cpp ;
compile-fail optional_test_fail_explicit_convert_in_value_or.cpp ;
compile-fail optional_test_fail_explicit_convert_in_value_or_call.cpp ;
compile-fail optional_test_fail_io_without_io.cpp ;
compile-fail optional_test_fail_none_io_without_io.cpp ;
compile-fail optional_test_fail_convert_assign_of_enums.cpp ;
run optional_test_static_properties.cpp ;
compile optional_test_maybe_uninitialized_warning.cpp ;
compile optional_test_deleted_default_ctor.cpp ;
compile optional_test_constructible_from_other.cpp ;
#run optional_xconfig_HACK_TO_LIST_PREDEFINED_MACROS.cpp ;
run optional_xconfig_NO_PROPER_ASSIGN_FROM_CONST_INT_pass.cpp ;
run-fail optional_xconfig_NO_PROPER_ASSIGN_FROM_CONST_INT_fail.cpp ;
run optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_pass.cpp ;
run-fail optional_xconfig_NO_PROPER_CONVERT_FROM_CONST_INT_fail.cpp ;
run optional_xconfig_NO_LEGAL_CONVERT_FROM_REF_pass.cpp ;
compile-fail optional_xconfig_NO_LEGAL_CONVERT_FROM_REF_fail.cpp ;