]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/timer/build/Jamfile.v2
6ced4d18ccbecc392ef6a1ce8f371da5ce4087c1
[ceph.git] / ceph / src / boost / libs / timer / build / Jamfile.v2
1 # Boost Timer Library Build Jamfile
2
3 # (C) Copyright Beman Dawes 2002, 2006, 2011
4
5 # Distributed under the Boost Software License, Version 1.0.
6 # See www.boost.org/LICENSE_1_0.txt
7
8 # See library home page at http://www.boost.org/libs/timer
9
10 project boost/timer
11 : source-location ../src
12 : requirements
13 <library>/boost/chrono//boost_chrono
14 <library>/boost/system//boost_system
15 : usage-requirements # pass these requirement to dependants (i.e. users)
16 <link>shared:<define>BOOST_TIMER_DYN_LINK=1
17 <link>static:<define>BOOST_TIMER_STATIC_LINK=1
18 ;
19
20 SOURCES = auto_timers_construction cpu_timer ;
21
22 lib boost_timer
23 : $(SOURCES).cpp
24 : <link>shared:<define>BOOST_TIMER_DYN_LINK=1
25 <link>static:<define>BOOST_TIMER_STATIC_LINK=1
26 ;
27
28 boost-install boost_timer ;