]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/context/performance/ucontext/Jamfile.v2
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / context / performance / ucontext / Jamfile.v2
CommitLineData
7c673cae
FG
1
2# Copyright Oliver Kowalke 2009.
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6
7# For more information, see http://www.boost.org/
8
9import common ;
10import feature ;
11import indirect ;
12import modules ;
13import os ;
14import toolset ;
15
16project boost/context/performance/ucontext
17 : requirements
18 <library>/boost/chrono//boost_chrono
19 <library>/boost/context//boost_context
20 <library>/boost/program_options//boost_program_options
21 <link>static
22 <linkflags>"-lrt"
23 <threading>multi
24 ;
25
26alias sources
27 : ../bind_processor_aix.cpp
28 : <target-os>aix
29 ;
30
31alias sources
32 : ../bind_processor_freebsd.cpp
33 : <target-os>freebsd
34 ;
35
36alias sources
37 : ../bind_processor_hpux.cpp
38 : <target-os>hpux
39 ;
40
41alias sources
42 : ../bind_processor_linux.cpp
43 : <target-os>linux
44 ;
45
46alias sources
47 : ../bind_processor_solaris.cpp
48 : <target-os>solaris
49 ;
50
51alias sources
52 : ../bind_processor_windows.cpp
53 : <target-os>windows
54 ;
55
56explicit sources ;
57
58exe performance
59 : sources
60 performance.cpp
61 ;