mirror of
https://github.com/commaai/rednose.git
synced 2026-06-08 14:04:59 +08:00
* RednoseCompileFilter tool * Refactor sconscripts * Move lst_sq and feature_handler to examples * add ekf_load_code_if_needed * Fat binary for cython ext * Restructure. Remove common_ekf. Load libs at runtime * Build compatibility with openpilot * ekf_lib_init * Fix styling issues * Fix linker flags for mac * Remove useless pyx imports * Build static lib instead of shared * newlines * Remove lst_sq_computer and feature_handler
20 lines
373 B
Python
20 lines
373 B
Python
Import('env')
|
|
|
|
gen_dir = Dir('generated/').abspath
|
|
|
|
env.RednoseCompileFilter(
|
|
target="live",
|
|
filter_gen_script="live_kf.py",
|
|
output_dir=gen_dir,
|
|
)
|
|
env.RednoseCompileFilter(
|
|
target="kinematic",
|
|
filter_gen_script="kinematic_kf.py",
|
|
output_dir=gen_dir,
|
|
)
|
|
env.RednoseCompileFilter(
|
|
target="compare",
|
|
filter_gen_script="test_compare.py",
|
|
output_dir=gen_dir,
|
|
)
|