File: Jamfile

package info (click to toggle)
boost1.88 1.88.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 576,932 kB
  • sloc: cpp: 4,149,234; xml: 136,789; ansic: 35,092; python: 33,910; asm: 5,698; sh: 4,604; ada: 1,681; makefile: 1,633; pascal: 1,139; perl: 1,124; sql: 640; yacc: 478; ruby: 271; java: 77; lisp: 24; csh: 6
file content (75 lines) | stat: -rw-r--r-- 2,383 bytes parent folder | download | duplicates (8)
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
# Copyright (c) 2018 Mateusz Loskot <mateusz@loskot.net>
# Copyright (c) 2019 Hans Dembinski
#
# 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)

import testing ;
import ../../config/checks/config : requires ;

project
    : requirements
    [ requires
      cxx14_constexpr cxx14_decltype_auto cxx14_generic_lambdas cxx14_return_type_deduction cxx11_user_defined_literals
      # list could go on...
    ]
    ;

alias cxx14 :
    [ run getting_started_listing_01.cpp ]
    [ run getting_started_listing_02.cpp ]
    [ run getting_started_listing_03.cpp ]
    [ run getting_started_listing_04.cpp ]
    [ run getting_started_listing_05.cpp ]
    [ run guide_axis_basic_demo.cpp ]
    [ run guide_axis_circular.cpp ]
    [ run guide_axis_growing.cpp ]
    [ run guide_axis_with_labels.cpp ]
    [ run guide_axis_with_transform.cpp ]
    [ run guide_axis_with_uoflow_off.cpp ]
    [ run guide_custom_2d_axis.cpp ]
    [ run guide_custom_accumulators_builtin.cpp ]
    [ run guide_custom_accumulators_with_metadata.cpp ]
    [ run guide_custom_accumulators_simple.cpp ]
    [ run guide_custom_accumulators_advanced.cpp ]
    [ run guide_custom_accumulators_ouroboros.cpp ]
    [ run guide_custom_minimal_axis.cpp ]
    [ run guide_custom_modified_axis.cpp ]
    [ run guide_custom_storage.cpp ]
    [ run guide_fill_histogram.cpp ]
    [ run guide_fill_profile.cpp ]
    [ run guide_fill_weighted_histogram.cpp ]
    [ run guide_fill_weighted_profile.cpp ]
    [ run guide_histogram_operators.cpp ]
    [ run guide_histogram_reduction.cpp ]
    [ run guide_histogram_projection.cpp ]
    [ run guide_histogram_streaming.cpp ]
    [ run guide_histogram_in_api.cpp ]
    [ run guide_indexed_access.cpp ]
    [ run guide_make_dynamic_histogram.cpp ]
    [ run guide_make_static_histogram.cpp ]
    [ run guide_stdlib_algorithms.cpp ]
    ;

alias threading :
    [ run guide_parallel_filling.cpp ] :
    <threading>multi
    ;

alias libserial :
    /boost/serialization//boost_serialization :
    <link>static <warnings>off <rtti>on
    ;

alias serial :
    [ run guide_histogram_serialization.cpp libserial ] :
    <warnings>off
    ;

alias all : cxx14 threading serial ;

explicit cxx14 ;
explicit threading ;
explicit libserial ;
explicit serial ;