]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/spirit/example/x3/Jamfile
bump version to 12.2.12-pve1
[ceph.git] / ceph / src / boost / libs / spirit / example / x3 / Jamfile
CommitLineData
7c673cae
FG
1#==============================================================================
2# Copyright (c) 2001-2014 Joel de Guzman
3#
4# Distributed under the Boost Software License, Version 1.0. (See accompanying
5# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6#==============================================================================
7project spirit-x3-example
8 : requirements
9 <include>.
10 <toolset>gcc:<cxxflags>-std=c++1y
11 <toolset>gcc:<cxxflags>-ftemplate-depth-512
12 <toolset>clang:<cxxflags>-std=c++1y
13 <toolset>clang:<cxxflags>-ftemplate-depth-512
14 <toolset>darwin:<cxxflags>-std=c++1y
15 <toolset>darwin:<cxxflags>-ftemplate-depth-512
16 :
17 :
18 ;
19
20exe x3_num_list1 : num_list/num_list1.cpp ;
21exe x3_num_list2 : num_list/num_list2.cpp ;
22exe x3_num_list3 : num_list/num_list3.cpp ;
23exe x3_num_list4 : num_list/num_list4.cpp ;
24
25exe x3_actions : actions.cpp ;
26exe x3_complex_number : complex_number.cpp ;
27exe x3_sum : sum.cpp ;
28exe x3_roman : roman.cpp ;
29exe x3_employee : employee.cpp ;
30
31exe x3_rexpr : rexpr/rexpr_min/rexpr.cpp ;
32
33build-project rexpr/rexpr_full ;
34
35exe x3_calc1 : calc/calc1.cpp ;
36exe x3_calc2 : calc/calc2.cpp ;
37exe x3_calc4 : calc/calc4.cpp ;
38exe x3_calc5 : calc/calc5.cpp ;
39exe x3_calc6 : calc/calc6.cpp ;
40
41exe x3_calc7 :
42 calc/calc7/vm.cpp
43 calc/calc7/compiler.cpp
44 calc/calc7/expression.cpp
45 calc/calc7/main.cpp
46;
47
48exe x3_calc8 :
49 /boost//system
50 /boost//filesystem
51 calc/calc8/vm.cpp
52 calc/calc8/compiler.cpp
53 calc/calc8/expression.cpp
54 calc/calc8/statement.cpp
55 calc/calc8/main.cpp
56;
57
58exe x3_calc9 :
59 /boost//system
60 /boost//filesystem
61 calc/calc9/vm.cpp
62 calc/calc9/compiler.cpp
63 calc/calc9/expression.cpp
64 calc/calc9/statement.cpp
65 calc/calc9/main.cpp
66;