Imported Upstream version 1.63.0
[platform/upstream/boost.git] / libs / context / example / v2 / Jamfile.v2
1 # Boost.Context Library Examples Jamfile
2
3 #          Copyright Oliver Kowalke 2014.
4 # Distributed under the Boost Software License, Version 1.0.
5 #    (See accompanying file LICENSE_1_0.txt or copy at
6 #          http://www.boost.org/LICENSE_1_0.txt)
7
8 # For more information, see http://www.boost.org/
9
10 import common ;
11 import feature ;
12 import indirect ;
13 import modules ;
14 import os ;
15 import toolset ;
16 import architecture ;
17
18 project boost/context/example/execution_context
19     : requirements
20       <library>/boost/context//boost_context
21       <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
22       <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
23       <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
24       <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
25       <link>static
26       <threading>multi
27     ;
28
29 exe jump_void
30     : jump_void.cpp
31     ;
32
33 exe jump
34     : jump.cpp
35     ;
36
37 exe fibonacci
38     : fibonacci.cpp
39     ;
40
41 exe parser
42     : parser.cpp
43     ;
44
45 exe parameter
46     : parameter.cpp
47     ;
48
49 exe ontop_void
50     : ontop_void.cpp
51     ;
52
53 exe ontop
54     : ontop.cpp
55     ;
56
57 exe throw
58     : throw.cpp
59     ;
60
61 exe echosse
62     : echosse.cpp
63     ;
64
65 #exe backtrace
66 #    : backtrace.cpp
67 #    : <linkflags>"-lunwind"
68 #    ;