scons: fix multithreaded builds (#29716)
* common_python export
* Single scons call
* transformations_python
old-commit-hash: d138a358eb
beeps
parent
aa247b65aa
commit
b580f19448
5 changed files with 19 additions and 11 deletions
@ -1,3 +1,5 @@ |
|||||||
Import('envCython') |
Import('envCython') |
||||||
|
|
||||||
envCython.Program('simple_kalman_impl.so', 'simple_kalman_impl.pyx') |
simple_kalman_python = envCython.Program('simple_kalman_impl.so', 'simple_kalman_impl.pyx') |
||||||
|
|
||||||
|
Export('simple_kalman_python') |
||||||
|
@ -1,6 +1,5 @@ |
|||||||
Import('env', 'envCython') |
Import('env', 'envCython') |
||||||
|
|
||||||
transformations = env.Library('transformations', ['orientation.cc', 'coordinates.cc']) |
transformations = env.Library('transformations', ['orientation.cc', 'coordinates.cc']) |
||||||
Export('transformations') |
transformations_python = envCython.Program('transformations.so', 'transformations.pyx') |
||||||
|
Export('transformations', 'transformations_python') |
||||||
envCython.Program('transformations.so', 'transformations.pyx') |
|
||||||
|
Loading…
Reference in new issue