2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 06:02:14 +00:00

Add Python version to library suffix.

This commit is contained in:
Stefan Seefeld
2018-02-06 16:59:45 -05:00
parent 660487c43f
commit d4d41d94ae
6 changed files with 159 additions and 153 deletions

View File

@@ -13,7 +13,7 @@ from faber.tools.compiler import define
root = module('..')
bpl = library('boost_python',
bpl = library('boost_python' + root.py_suffix,
['list.cpp',
'long.cpp',
'dict.cpp',
@@ -44,7 +44,7 @@ bpl = library('boost_python',
dependencies=root.config,
features=features + define('BOOST_PYTHON_SOURCE'))
bnl = library('boost_numpy',
bnl = library('boost_numpy' + root.py_suffix,
['numpy/dtype.cpp',
'numpy/matrix.cpp',
'numpy/ndarray.cpp',