]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/context/example/v2/Jamfile.v2
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / context / example / v2 / Jamfile.v2
CommitLineData
7c673cae
FG
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
10import common ;
11import feature ;
12import indirect ;
13import modules ;
14import os ;
15import toolset ;
16import architecture ;
17
18project 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
29exe jump_void
30 : jump_void.cpp
31 ;
32
33exe jump
34 : jump.cpp
35 ;
36
37exe fibonacci
38 : fibonacci.cpp
39 ;
40
41exe parser
42 : parser.cpp
43 ;
44
45exe parameter
46 : parameter.cpp
47 ;
48
49exe ontop_void
50 : ontop_void.cpp
51 ;
52
53exe ontop
54 : ontop.cpp
55 ;
56
57exe throw
58 : throw.cpp
59 ;
60
61exe echosse
62 : echosse.cpp
63 ;