mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-07-15 09:52:04 +08:00
27e12ccad7
======================== * 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.
23 lines
596 B
Python
23 lines
596 B
Python
from distutils.core import Extension, setup
|
|
from Cython.Build import cythonize
|
|
|
|
from common.cython_hacks import BuildExtWithoutPlatformSuffix
|
|
|
|
libraries = ['can_list_to_can_capnp', 'capnp', 'kj']
|
|
|
|
setup(name='Boardd API Implementation',
|
|
cmdclass={'build_ext': BuildExtWithoutPlatformSuffix},
|
|
ext_modules=cythonize(
|
|
Extension(
|
|
"boardd_api_impl",
|
|
libraries=libraries,
|
|
library_dirs=[
|
|
'./',
|
|
],
|
|
sources=['boardd_api_impl.pyx'],
|
|
language="c++",
|
|
extra_compile_args=["-std=c++11"],
|
|
)
|
|
)
|
|
)
|