Jamfile.v2 759 B

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