mirror of
https://github.com/boostorg/parameter.git
synced 2026-01-20 04:42:22 +00:00
39 lines
663 B
Plaintext
Executable File
39 lines
663 B
Plaintext
Executable File
subproject libs/parameter/test/python ;
|
|
|
|
SEARCH on python.jam = $(BOOST_BUILD_PATH) ;
|
|
include python.jam ;
|
|
|
|
STATS_ROOT ?= $(BOOST_ROOT) ;
|
|
|
|
extension parameter
|
|
: simple.cpp
|
|
<template>@boost/libs/python/build/extension
|
|
;
|
|
|
|
boost-python-runtest test1
|
|
: test_simple.py
|
|
<pyd>parameter
|
|
;
|
|
|
|
extension general
|
|
: general.cpp
|
|
<template>@boost/libs/python/build/extension
|
|
;
|
|
|
|
boost-python-runtest test2
|
|
: test_general.py
|
|
<pyd>general
|
|
;
|
|
|
|
extension accumulator_set
|
|
: accumulator.cpp
|
|
<template>@boost/libs/python/build/extension
|
|
: <include>$(STATS_ROOT)
|
|
;
|
|
|
|
boost-python-runtest test3
|
|
: test_accumulator.py
|
|
<pyd>accumulator_set
|
|
;
|
|
|