scons: fix multithreaded builds (#29716)

* common_python export

* Single scons call

* transformations_python
This commit is contained in:
Kacper Rączy
2023-08-30 15:01:03 -07:00
committed by GitHub
parent d9fedaa0a4
commit d138a358eb
5 changed files with 19 additions and 11 deletions

View File

@@ -1,6 +1,5 @@
Import('env', 'envCython')
transformations = env.Library('transformations', ['orientation.cc', 'coordinates.cc'])
Export('transformations')
envCython.Program('transformations.so', 'transformations.pyx')
transformations_python = envCython.Program('transformations.so', 'transformations.pyx')
Export('transformations', 'transformations_python')