]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/python/example/numpy/Jamfile
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / python / example / numpy / Jamfile
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
6 import python ;
7
8 # Adjust the following if Boost.Python isn't installed in a default location
9 lib boost_numpy
10 :
11 : <search>/usr/local/Boost/lib
12 <include>/usr/local/Boost/include
13 ;
14
15 project numpy
16 : requirements
17 <include>/usr/local/Boost/include
18 <library>boost_numpy
19 <location>.
20 ;
21
22 exe simple : simple.cpp boost_numpy /python//python ;
23 exe dtype : dtype.cpp boost_numpy /python//python ;
24 exe ndarray : ndarray.cpp /python//python ;
25 exe fromdata : fromdata.cpp /python//python ;
26 exe ufunc : ufunc.cpp /python//python ;
27 exe wrap : wrap.cpp /python//python ;
28
29 python-extension gaussian : gaussian.cpp ;