mirror of
https://github.com/boostorg/python.git
synced 2026-01-22 17:32:55 +00:00
19 lines
480 B
Plaintext
19 lines
480 B
Plaintext
import testing ;
|
|
import python ;
|
|
|
|
rule numpy-test ( name : sources * : requirements * )
|
|
{
|
|
sources ?= $(name).py $(name)_mod.cpp ;
|
|
return [ testing.make-test run-pyd : $(sources) /boost/numpy//boost_numpy
|
|
: $(requirements) : $(name) ] ;
|
|
}
|
|
|
|
rule probe ( python-cmd )
|
|
{
|
|
local full-cmd =
|
|
$(python-cmd)" -c \"from numpy.distutils import misc_util; print misc_util.get_numpy_include_dirs()" ;
|
|
|
|
local output = [ shell-cmd $(full-cmd) ] ;
|
|
return $(output) ;
|
|
}
|