scons: fix multithreaded builds (#29716)
* common_python export * Single scons call * transformations_pythonpull/29722/head
parent
d9fedaa0a4
commit
d138a358eb
5 changed files with 19 additions and 11 deletions
@ -1,3 +1,5 @@ |
||||
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') |
||||
|
||||
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') |
||||
|
Loading…
Reference in new issue