selfdrive/locationd

old-commit-hash: fcf8efb826
This commit is contained in:
George Hotz
2020-01-17 11:39:46 -08:00
parent ea02548652
commit dda315bcc8
46 changed files with 6157 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
Import('env', 'common', 'messaging')
loc_objs = [
"locationd_yawrate.cc",
"params_learner.cc",
"paramsd.cc"]
loc_libs = [messaging, 'zmq', common, 'capnp', 'kj', 'json', 'json11', 'pthread']
env.Program("paramsd", loc_objs, LIBS=loc_libs)
env.SharedLibrary("locationd", loc_objs, LIBS=loc_libs)
env.Program("ubloxd", [
"ubloxd.cc",
"ublox_msg.cc",
"ubloxd_main.cc"],
LIBS=loc_libs)
env.Program("ubloxd_test", [
"ubloxd_test.cc",
"ublox_msg.cc",
"ubloxd_main.cc"],
LIBS=loc_libs)