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 10import testing ; 11import path ; 12 13project boost/units/example : 14 : requirements <include>$(BOOST_ROOT) <include>../../.. <warnings>all 15; 16 17files = [ path.glob . : *.cpp : performance.* runtime_unit.* ] ; 18 19for local file in $(files) 20{ 21 run $(file) ; 22} 23 24compile performance.cpp ; 25run runtime_unit.cpp : <runtime_unit_input.txt ; 26