mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 13:34:01 +08:00
======================== * Based on latest openpilot 0.7.8 devel. * Added "Reset DP Settings" button. (Thanks to @LOVEChen) * Alert messages changed to concept UI alike design. * Added ability to execute reset_update.sh when press "Exit" button once manager returned errors.
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")
|