summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/histogram/examples/Jamfile
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/histogram/examples/Jamfile
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/histogram/examples/Jamfile')
-rw-r--r--src/boost/libs/histogram/examples/Jamfile67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/boost/libs/histogram/examples/Jamfile b/src/boost/libs/histogram/examples/Jamfile
new file mode 100644
index 00000000..596a8ca5
--- /dev/null
+++ b/src/boost/libs/histogram/examples/Jamfile
@@ -0,0 +1,67 @@
+# 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 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_1.cpp ]
+ [ run guide_custom_accumulators_2.cpp ]
+ [ run guide_custom_accumulators_3.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_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 ;
+
+alias serial :
+ [ run guide_histogram_serialization.cpp libserial ]
+ ;
+
+alias all : cxx14 threading serial ;
+
+explicit cxx14 ;
+explicit threading ;
+explicit libserial ;
+explicit serial ;