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 10project boost/timer 11 : source-location ../src 12 : requirements 13 <library>/boost/chrono//boost_chrono 14 : usage-requirements # pass these requirement to dependants (i.e. users) 15 <link>shared:<define>BOOST_TIMER_DYN_LINK=1 16 <link>static:<define>BOOST_TIMER_STATIC_LINK=1 17 ; 18 19SOURCES = auto_timers_construction cpu_timer ; 20 21lib boost_timer 22 : $(SOURCES).cpp 23 : <link>shared:<define>BOOST_TIMER_DYN_LINK=1 24 <link>static:<define>BOOST_TIMER_STATIC_LINK=1 25 ; 26 27boost-install boost_timer ; 28