mirror of
https://github.com/boostorg/parameter.git
synced 2026-01-28 19:32:11 +00:00
39 lines
818 B
Plaintext
Executable File
39 lines
818 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 singular.cpp ]
|
|
[ run mpl.cpp ]
|
|
[ run preprocessor.cpp ]
|
|
[ run efficiency.cpp : : : : : release ]
|
|
[ run maybe.cpp ]
|
|
[ compile ntp.cpp ]
|
|
[ compile unwrap_cv_reference.cpp ]
|
|
[ compile-fail duplicates.cpp ]
|
|
[ compile-fail unnamed_fail.cpp ]
|
|
[ compile compose.cpp ]
|
|
;
|
|
|
|
import python ;
|
|
|
|
extension python_parameter
|
|
: python.cpp
|
|
<template>@boost/libs/python/build/extension
|
|
;
|
|
|
|
boost-python-runtest python-parameter-test
|
|
: python.py
|
|
<pyd>python_parameter
|
|
;
|
|
|