1 #==============================================================================
2 # Copyright (c) 2001-2014 Joel de Guzman
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 #==============================================================================
7 project spirit-x3-example
10 <c++-template-depth>512
11 <toolset>gcc:<cxxflags>-std=c++1y
12 <toolset>clang:<cxxflags>-std=c++1y
13 <toolset>darwin:<cxxflags>-std=c++1y
18 exe x3_num_list1 : num_list/num_list1.cpp ;
19 exe x3_num_list2 : num_list/num_list2.cpp ;
20 exe x3_num_list3 : num_list/num_list3.cpp ;
21 exe x3_num_list4 : num_list/num_list4.cpp ;
23 exe x3_actions : actions.cpp ;
24 exe x3_complex_number : complex_number.cpp ;
25 exe x3_sum : sum.cpp ;
26 exe x3_roman : roman.cpp ;
27 exe x3_employee : employee.cpp ;
29 exe x3_rexpr : rexpr/rexpr_min/rexpr.cpp ;
31 build-project rexpr/rexpr_full ;
33 exe x3_calc1 : calc/calc1.cpp ;
34 exe x3_calc2 : calc/calc2.cpp ;
35 exe x3_calc4 : calc/calc4.cpp ;
36 exe x3_calc4b : calc/calc4b.cpp ;
37 exe x3_calc5 : calc/calc5.cpp ;
38 exe x3_calc6 : calc/calc6.cpp ;
42 calc/calc7/compiler.cpp
43 calc/calc7/expression.cpp
50 calc/calc8/compiler.cpp
51 calc/calc8/expression.cpp
52 calc/calc8/statement.cpp
59 calc/calc9/compiler.cpp
60 calc/calc9/expression.cpp
61 calc/calc9/statement.cpp
65 exe x3_tuple : attributes/tuple.cpp ;