Skip to content
Snippets Groups Projects
Commit 7e6cdad8 authored by Manuel Günther's avatar Manuel Günther
Browse files

Added missing boost modules (missing in MacOSX only).

parent 81690376
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,9 @@ from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.blitz'] + bob_packages))
from bob.blitz.extension import Extension, Library, build_ext
packages = ['boost']
boost_modules = ['system']
version = '2.0.0a0'
setup(
......@@ -48,6 +51,8 @@ setup(
],
bob_packages = bob_packages,
version = version,
packages = packages,
boost_modules = boost_modules,
),
Library("bob.learn.mlp.bob_learn_mlp",
......@@ -63,6 +68,8 @@ setup(
],
bob_packages = bob_packages,
version = version,
packages = packages,
boost_modules = boost_modules,
),
Extension("bob.learn.mlp._library",
......@@ -78,6 +85,8 @@ setup(
],
bob_packages = bob_packages,
version = version,
packages = packages,
boost_modules = boost_modules,
),
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment