mirror of
https://github.com/boostorg/parameter.git
synced 2026-01-19 16:32:13 +00:00
20 lines
443 B
Plaintext
Executable File
20 lines
443 B
Plaintext
Executable File
# Boost Parameter Library test Jamfile
|
|
|
|
subproject libs/parameter/test ;
|
|
|
|
# bring in rules for testing
|
|
import testing ;
|
|
|
|
test-suite "parameter"
|
|
: [ run basics.cpp ]
|
|
[ run sfinae.cpp ]
|
|
[ run macros.cpp ]
|
|
[ run unnamed.cpp ]
|
|
[ run earwicker.cpp ]
|
|
[ run tutorial.cpp ]
|
|
[ run mpl.cpp ]
|
|
[ run efficiency.cpp : : : : : release ]
|
|
[ compile unwrap_cv_reference.cpp ]
|
|
[ compile-fail duplicates.cpp ]
|
|
;
|