Files
dragonpilot/selfdrive/locationd/SConscript
T
Rick Lan 27e12ccad7 dragonpilot 0.7.8.0
========================
* 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.
2020-08-31 12:42:57 +10:00

16 lines
322 B
Python

Import('env', 'common', 'cereal', 'messaging')
loc_libs = [cereal, messaging, 'zmq', common, 'capnp', 'kj', 'pthread']
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)