mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 02:22:09 +08:00
993eeaf694
* rebuild cython extensions when python/cython/distutils version changes * submodules and boardd * kalman and transformations old-commit-hash: 165e14d10384a67777ec5ed787cf1ec82ec61ccb
7 lines
278 B
Python
7 lines
278 B
Python
Import('env', 'cython_dependencies')
|
|
|
|
env.Command(['simple_kalman_impl.so'],
|
|
cython_dependencies + ['simple_kalman_impl.pyx', 'simple_kalman_impl.pxd', 'simple_kalman_setup.py'],
|
|
"cd common/kalman && python3 simple_kalman_setup.py build_ext --inplace")
|
|
|