From 022f76e7e3d66af6dbbd058f70095956407486b5 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Mon, 7 Jan 2008 02:42:16 +0000 Subject: numpy.fft builds with scons --- numpy/fft/SConstruct | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 numpy/fft/SConstruct (limited to 'numpy/fft/SConstruct') diff --git a/numpy/fft/SConstruct b/numpy/fft/SConstruct new file mode 100644 index 000000000..2a53f6477 --- /dev/null +++ b/numpy/fft/SConstruct @@ -0,0 +1,13 @@ +# Last Change: Thu Oct 18 09:00 PM 2007 J +# vim:syntax=python +import __builtin__ +__builtin__.__NUMPY_SETUP__ = True +from numpy.distutils.misc_util import get_numpy_include_dirs +from numscons import GetNumpyEnvironment, scons_get_paths + +env = GetNumpyEnvironment(ARGUMENTS) +env.Append(CPPPATH = scons_get_paths(env['include_bootstrap'])) + +fftpack_lite = env.NumpyPythonExtension('fftpack_lite', + source = ['fftpack_litemodule.c', + 'fftpack.c']) -- cgit v1.2.1