1#| 2Distributed under the Boost Software License, Version 1.0. (See 3accompanying file LICENSE_1_0.txt or copy at 4http://www.boost.org/LICENSE_1_0.txt) 5|# 6 7#[jamroot 8#<< Import the time rule from the testing module. 9import testing ; 10 11#<< The target we are timing just builds a hello program. 12exe hello : hello.cpp ; 13 14#<< This target records the time to build the `hello` target. 15time hello.time : hello ; 16#] 17