2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-20 16:52:15 +00:00
Files
python/libs/numpy/example/SConscript
2011-10-30 14:43:53 +00:00

12 lines
349 B
Python

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")