Boost: Add Python libraries

Fixes: #2507
pull/2534/merge
Niklas Claesson 8 years ago committed by Jussi Pakkanen
parent 004cc1493b
commit 14e7b0af25
  1. 4
      mesonbuild/dependencies/misc.py
  2. 3
      tools/boost_names.py

@ -815,6 +815,10 @@ BOOST_LIBS = [
'boost_math_c99l',
'boost_mpi',
'boost_program_options',
'boost_python',
'boost_python3',
'boost_numpy',
'boost_numpy3',
'boost_random',
'boost_regex',
'boost_serialization',

@ -129,6 +129,9 @@ def get_modules(init=extra):
def get_modules_2():
modules = []
# The python module uses an older build system format and is not easily parseable.
# We add the python module libraries manually.
modules.append(Module('python', 'Python', ['boost_python', 'boost_python3', 'boost_numpy', 'boost_numpy3']))
for (root, dirs, files) in os.walk(LIBS):
for f in files:
if f == "libraries.json":

Loading…
Cancel
Save