mirror of
https://github.com/boostorg/python.git
synced 2026-01-24 06:02:14 +00:00
added gaussian example, updated scons build
This commit is contained in:
11
libs/numpy/example/SConscript
Normal file
11
libs/numpy/example/SConscript
Normal file
@@ -0,0 +1,11 @@
|
||||
Import("boost_numpy_env")
|
||||
|
||||
example = []
|
||||
|
||||
for name in ("ufunc", "dtype", "fromdata", "ndarray", "simple"):
|
||||
example.extend(boost_numpy_env.Program(name, "%s.cpp" % name, LIBS="boost_numpy"))
|
||||
|
||||
for name in ("gaussian",):
|
||||
example.extend(boost_numpy_env.SharedLibrary(name, "%s.cpp" % name, SHLIBPREFIX="", LIBS="boost_numpy"))
|
||||
|
||||
Return("example")
|
||||
Reference in New Issue
Block a user