2
0
mirror of https://github.com/boostorg/hof.git synced 2026-01-20 16:42:14 +00:00
Files
hof/test/Jamfile.v2
2018-02-15 10:06:29 -06:00

25 lines
353 B
Plaintext

import testing ;
project hof
: requirements
<include>../include/
;
rule test_all
{
local all_rules = ;
for local fileb in [ glob *.cpp ]
{
all_rules += [ run $(fileb)
: # additional args
: # test-files
: # requirements
] ;
}
return $(all_rules) ;
}
test-suite hof : [ test_all r ] : ;