mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 01:43:51 +08:00
7 lines
161 B
Python
7 lines
161 B
Python
Import('env')
|
|
|
|
# parser
|
|
env.Command(['common_pyx.so'],
|
|
['common_pyx_setup.py', 'clock.pyx'],
|
|
"cd common && python3 common_pyx_setup.py build_ext --inplace")
|