Jamfile 814 B

1234567891011121314151617181920212223242526272829
  1. # Copyright Stefan Seefeld 2016.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. import python ;
  6. # Adjust the following if Boost.Python isn't installed in a default location
  7. lib boost_numpy
  8. :
  9. : <search>/usr/local/Boost/lib
  10. <include>/usr/local/Boost/include
  11. ;
  12. project numpy
  13. : requirements
  14. <include>/usr/local/Boost/include
  15. <library>boost_numpy
  16. <location>.
  17. ;
  18. exe simple : simple.cpp boost_numpy /python//python ;
  19. exe dtype : dtype.cpp boost_numpy /python//python ;
  20. exe ndarray : ndarray.cpp /python//python ;
  21. exe fromdata : fromdata.cpp /python//python ;
  22. exe ufunc : ufunc.cpp /python//python ;
  23. exe wrap : wrap.cpp /python//python ;
  24. python-extension gaussian : gaussian.cpp ;