mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 01:53:57 +08:00
* Revert "Remove all the OpenCL (#37105)" This reverts commitd5cbb89d84. * Revert "rm common/mat.h" This reverts commit4ce701150a. * Revert "Calibrate in tg (#36621)" This reverts commit593c3a0c8e.
25 lines
639 B
Python
25 lines
639 B
Python
Import('env', 'envCython', 'arch')
|
|
|
|
common_libs = [
|
|
'params.cc',
|
|
'swaglog.cc',
|
|
'util.cc',
|
|
'ratekeeper.cc',
|
|
'clutil.cc',
|
|
]
|
|
|
|
_common = env.Library('common', common_libs, LIBS="json11")
|
|
Export('_common')
|
|
|
|
if GetOption('extras'):
|
|
env.Program('tests/test_common',
|
|
['tests/test_runner.cc', 'tests/test_params.cc', 'tests/test_util.cc', 'tests/test_swaglog.cc'],
|
|
LIBS=[_common, 'json11', 'zmq', 'pthread'])
|
|
|
|
# Cython bindings
|
|
params_python = envCython.Program('params_pyx.so', 'params_pyx.pyx', LIBS=envCython['LIBS'] + [_common, 'zmq', 'json11'])
|
|
|
|
common_python = [params_python]
|
|
|
|
Export('common_python')
|