Skip to content

Commit

Permalink
Now uses our own build_ext (removes compiler warnings).
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Guenther committed Sep 3, 2014
1 parent 6ea8688 commit 315bcfd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=['bob.blitz'] + bob_packages))
from bob.blitz.extension import Extension
from bob.blitz.extension import Extension, build_ext

packages = ['blitz >= 0.10', 'boost']

Expand Down Expand Up @@ -63,6 +63,10 @@
),
],

cmdclass = {
'build_ext': build_ext
},

entry_points={
'console_scripts': [
'bob_compute_perf.py = bob.measure.script.compute_perf:main',
Expand Down

0 comments on commit 315bcfd

Please sign in to comment.