Jamfile.v2 542 B

12345678910111213141516171819202122232425
  1. # Jamfile.v2
  2. #
  3. # Copyright (c) 2007-2008
  4. # Steven Watanabe
  5. #
  6. # Distributed under the Boost Software License, Version 1.0. (See
  7. # accompanying file LICENSE_1_0.txt or copy at
  8. # http://www.boost.org/LICENSE_1_0.txt
  9. import testing ;
  10. import path ;
  11. project boost/units/example :
  12. : requirements <include>$(BOOST_ROOT) <include>../../.. <warnings>all
  13. ;
  14. files = [ path.glob . : *.cpp : performance.* runtime_unit.* ] ;
  15. for local file in $(files)
  16. {
  17. run $(file) ;
  18. }
  19. compile performance.cpp ;
  20. run runtime_unit.cpp : <runtime_unit_input.txt ;