Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / coroutine / example / asymmetric / Jamfile.v2
1 # Boost.Coroutine Library Examples Jamfile
2
3 #          Copyright Oliver Kowalke 2009.
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
17 project boost/coroutine/example/asymmetric
18     : requirements
19       <library>/boost/context//boost_context
20       <library>/boost/coroutine//boost_coroutine
21       <library>/boost/program_options//boost_program_options
22       <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
23       <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
24       <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
25       <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
26       <link>shared
27       <threading>multi
28     ;
29
30 exe chaining
31     : chaining.cpp
32     ;
33 exe echo
34     : echo.cpp
35     ;
36 exe exception
37     : exception.cpp
38     ;
39 exe fibonacci
40     : fibonacci.cpp
41     ;
42 exe layout
43     : layout.cpp
44     ;
45 exe parallel
46     : parallel.cpp
47     ;
48 exe power
49     : power.cpp
50     ;
51 exe same_fringe
52     : same_fringe.cpp
53     ;
54 exe segmented_stack
55     : segmented_stack.cpp
56     ;
57 exe simple
58     : simple.cpp
59       test.cpp
60     ;
61 exe unwind
62     : unwind.cpp
63     ;