Imported Upstream version 1.63.0
[platform/upstream/boost.git] / libs / context / example / ecv1 / 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
30     : jump.cpp
31     ;
32
33 exe segmented
34     : segmented.cpp
35     ;
36
37 exe parser
38     : parser.cpp
39     ;
40
41 exe fibonacci
42     : fibonacci.cpp
43     ;
44
45 exe parameter
46     : parameter.cpp
47     ;
48
49 exe ontop
50     : ontop.cpp
51     ;