mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 21:44: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.
9 lines
330 B
Python
9 lines
330 B
Python
Import('env', 'cython_dependencies')
|
|
|
|
d = Dir('.')
|
|
|
|
env.Command(['transformations.so'],
|
|
cython_dependencies + ['transformations.pxd', 'transformations.pyx',
|
|
'coordinates.cc', 'orientation.cc', 'coordinates.hpp', 'orientation.hpp'],
|
|
'cd ' + d.path + ' && python3 setup.py build_ext --inplace')
|