2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 12:22:17 +00:00
Files
build/example/time/jamroot.jam
2016-10-24 18:10:19 -05:00

14 lines
226 B
Plaintext

import feature ;
import toolset ;
import os ;
import testing ;
path-constant HERE : . ;
make main.cpp : main_cpp.pro : @do-something ;
time main.time : main.cpp ;
actions do-something
{
sleep 2 && echo "$(<)" > "$(<)"
}