summaryrefslogtreecommitdiffstats
path: root/python/builder.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/builder.py')
-rw-r--r--python/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/builder.py b/python/builder.py
index dd99633..b373366 100644
--- a/python/builder.py
+++ b/python/builder.py
@@ -66,7 +66,7 @@ ext_modules = cythonize(os.path.join(self_path, 'astra', '*.pyx'),
cmdclass = {'build_ext': build_ext}
for m in ext_modules:
- if m.name == 'astra.plugin_c':
+ if m.name in ('astra.plugin_c', 'astra.algorithm_c'):
m.sources.append(os.path.join(self_path, 'astra', 'src',
'PythonPluginAlgorithm.cpp'))