Skip to content
Snippets Groups Projects
Commit cf4a2a6d authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Add aksetup fixes from PyUblas port.

parent 0df882e2
No related branches found
No related tags found
No related merge requests found
......@@ -64,9 +64,14 @@ class NumpyExtension(Extension):
from os.path import join
return join(pathname, "core", "include")
@property
def include_dirs(self):
def get_include_dirs(self):
return self._include_dirs + [self.get_numpy_incpath()]
def set_include_dirs(self, value):
self._include_dirs = value
def del_include_dirs(self):
pass
include_dirs = property(get_include_dirs, set_include_dirs, del_include_dirs)
......
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