diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-27 15:35:04 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-08-28 12:12:41 +0200 |
commit | 21ae85a5a54a9822931b8965b08d806ea45e1dfe (patch) | |
tree | 7b1a0e32bf8e0a307ff8b3a5511337cf577454d4 /python/builder.py | |
parent | 52987f395d423203fbb1a417961408804832c258 (diff) | |
download | astra-21ae85a5a54a9822931b8965b08d806ea45e1dfe.tar.gz astra-21ae85a5a54a9822931b8965b08d806ea45e1dfe.tar.bz2 astra-21ae85a5a54a9822931b8965b08d806ea45e1dfe.tar.xz astra-21ae85a5a54a9822931b8965b08d806ea45e1dfe.zip |
Split up PythonPluginAlgorithm files
Diffstat (limited to 'python/builder.py')
-rw-r--r-- | python/builder.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/builder.py b/python/builder.py index b373366..81636a1 100644 --- a/python/builder.py +++ b/python/builder.py @@ -69,6 +69,9 @@ for m in ext_modules: if m.name in ('astra.plugin_c', 'astra.algorithm_c'): m.sources.append(os.path.join(self_path, 'astra', 'src', 'PythonPluginAlgorithm.cpp')) + if m.name in ('astra.plugin_c'): + m.sources.append(os.path.join(self_path, 'astra', 'src', + 'PythonPluginAlgorithmFactory.cpp')) setup(name='astra-toolbox', version='1.9.0dev', |