jamroot.jam 404 B

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