forked from numpy/numpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt numpy.numarray to new build dir convention.
- Loading branch information
Showing
2 changed files
with
11 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Last Change: Thu Jun 12 06:00 PM 2008 J | ||
# vim:syntax=python | ||
from numscons import GetNumpyEnvironment, scons_get_paths | ||
|
||
env = GetNumpyEnvironment(ARGUMENTS) | ||
env.Append(CPPPATH = scons_get_paths(env['include_bootstrap'])) | ||
env.Append(CPPPATH = ['numpy']) | ||
|
||
_capi = env.DistutilsPythonExtension('_capi', source = ['_capi.c']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,2 @@ | ||
# Last Change: Tue May 20 05:00 PM 2008 J | ||
# vim:syntax=python | ||
from numscons import GetNumpyEnvironment, scons_get_paths | ||
|
||
env = GetNumpyEnvironment(ARGUMENTS) | ||
env.Append(CPPPATH = scons_get_paths(env['include_bootstrap'])) | ||
env.Append(CPPPATH = env['src_dir']) | ||
|
||
_capi = env.NumpyPythonExtension('_capi', source = ['_capi.c']) | ||
from numscons import GetInitEnvironment | ||
GetInitEnvironment(ARGUMENTS).DistutilsSConscript('SConscript') |