mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-19 08:12:07 +08:00
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")
|