summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/spirit/example/x3/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/spirit/example/x3/Jamfile
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.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/spirit/example/x3/Jamfile')
-rw-r--r--src/boost/libs/spirit/example/x3/Jamfile65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/boost/libs/spirit/example/x3/Jamfile b/src/boost/libs/spirit/example/x3/Jamfile
new file mode 100644
index 00000000..1e8bb8f3
--- /dev/null
+++ b/src/boost/libs/spirit/example/x3/Jamfile
@@ -0,0 +1,65 @@
+#==============================================================================
+# Copyright (c) 2001-2014 Joel de Guzman
+#
+# 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)
+#==============================================================================
+project spirit-x3-example
+ : requirements
+ <include>.
+ <c++-template-depth>512
+ <toolset>gcc:<cxxflags>-std=c++1y
+ <toolset>clang:<cxxflags>-std=c++1y
+ <toolset>darwin:<cxxflags>-std=c++1y
+ :
+ :
+ ;
+
+exe x3_num_list1 : num_list/num_list1.cpp ;
+exe x3_num_list2 : num_list/num_list2.cpp ;
+exe x3_num_list3 : num_list/num_list3.cpp ;
+exe x3_num_list4 : num_list/num_list4.cpp ;
+
+exe x3_actions : actions.cpp ;
+exe x3_complex_number : complex_number.cpp ;
+exe x3_sum : sum.cpp ;
+exe x3_roman : roman.cpp ;
+exe x3_employee : employee.cpp ;
+
+exe x3_rexpr : rexpr/rexpr_min/rexpr.cpp ;
+
+build-project rexpr/rexpr_full ;
+
+exe x3_calc1 : calc/calc1.cpp ;
+exe x3_calc2 : calc/calc2.cpp ;
+exe x3_calc4 : calc/calc4.cpp ;
+exe x3_calc4b : calc/calc4b.cpp ;
+exe x3_calc5 : calc/calc5.cpp ;
+exe x3_calc6 : calc/calc6.cpp ;
+
+exe x3_calc7 :
+ calc/calc7/vm.cpp
+ calc/calc7/compiler.cpp
+ calc/calc7/expression.cpp
+ calc/calc7/main.cpp
+;
+
+exe x3_calc8 :
+ /boost//filesystem
+ calc/calc8/vm.cpp
+ calc/calc8/compiler.cpp
+ calc/calc8/expression.cpp
+ calc/calc8/statement.cpp
+ calc/calc8/main.cpp
+;
+
+exe x3_calc9 :
+ /boost//filesystem
+ calc/calc9/vm.cpp
+ calc/calc9/compiler.cpp
+ calc/calc9/expression.cpp
+ calc/calc9/statement.cpp
+ calc/calc9/main.cpp
+;
+
+exe x3_tuple : attributes/tuple.cpp ; \ No newline at end of file