Fix wrong include paths for shared subpackage

This commit is contained in:
Johannes Schönberger
2013-01-23 14:54:33 +01:00
parent 59a8deb70a
commit 11f32577ab
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ def configuration(parent_package='', top_path=None):
cython(['_draw.pyx'], working_path=base_path)
config.add_extension('_draw', sources=['_draw.c'],
include_dirs=[get_numpy_include_dirs(), '../shared'])
include_dirs=[get_numpy_include_dirs(), '../_shared'])
return config
+1 -1
View File
@@ -29,7 +29,7 @@ def configuration(parent_package='', top_path=None):
config.add_extension('_skeletonize_cy', sources=['_skeletonize_cy.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_pnpoly', sources=['_pnpoly.c'],
include_dirs=[get_numpy_include_dirs(), '../shared'])
include_dirs=[get_numpy_include_dirs(), '../_shared'])
config.add_extension('_convex_hull', sources=['_convex_hull.c'],
include_dirs=[get_numpy_include_dirs()])
config.add_extension('_greyreconstruct', sources=['_greyreconstruct.c'],