Files
dragonpilot/selfdrive/locationd/SConscript

9 lines
328 B
Python
Raw Normal View History

Import('env', 'common', 'cereal', 'messaging')
2020-01-17 11:39:46 -08:00
2020-07-24 18:43:17 +02:00
loc_libs = [cereal, messaging, 'zmq', common, 'capnp', 'kj', 'pthread']
2020-01-17 11:39:46 -08:00
2020-12-19 15:05:40 -08:00
env.Program("ubloxd", ["ubloxd.cc", "ublox_msg.cc", "ubloxd_main.cc"], LIBS=loc_libs)
2020-01-17 11:39:46 -08:00
2020-12-19 15:05:40 -08:00
if GetOption("test"):
env.Program("ubloxd_test", ["ubloxd_test.cc", "ublox_msg.cc", "ubloxd_main.cc"], LIBS=loc_libs)