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