* rebuild cython extensions when python/cython/distutils version changes * submodules and boardd * kalman and transformations old-commit-hash: 165e14d10384a67777ec5ed787cf1ec82ec61ccb
7 lines
258 B
Python
7 lines
258 B
Python
Import('env', 'cython_dependencies')
|
|
|
|
# Build cython clock module
|
|
env.Command(['common_pyx.so', 'clock.cpp'],
|
|
cython_dependencies + ['common_pyx_setup.py', 'clock.pyx'],
|
|
"cd common && python3 common_pyx_setup.py build_ext --inplace")
|