mirror of
https://github.com/boostorg/hof.git
synced 2026-01-20 16:42:14 +00:00
25 lines
353 B
Plaintext
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 ] : ;
|