Imported Upstream version 1.57.0
[platform/upstream/boost.git] / libs / spirit / example / x3 / Jamfile
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 #==============================================================================
7 project spirit-x3-example
8     : requirements
9         <include>.
10         <toolset>gcc:<cxxflags>-std=c++0x
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
20 exe calc1 : calc1.cpp ;
21 exe calc2 : calc2.cpp ;
22 exe calc3 : calc4.cpp ;
23 exe calc4 : calc4b.cpp ;
24 exe calc5 : calc5.cpp ;
25 exe calc6 : calc6.cpp ;
26
27 exe calc7 :
28     calc7/vm.cpp
29     calc7/compiler.cpp
30     calc7/expression.cpp
31     calc7/main.cpp
32 ;
33
34 exe calc8 :
35     /boost//system
36     /boost//filesystem
37     calc8/vm.cpp
38     calc8/compiler.cpp
39     calc8/expression.cpp
40     calc8/statement.cpp
41     calc8/main.cpp
42 ;
43
44 exe calc9 :
45     /boost//system
46     /boost//filesystem
47     calc9/vm.cpp
48     calc9/compiler.cpp
49     calc9/expression.cpp
50     calc9/statement.cpp
51     calc9/main.cpp
52 ;