mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-06-22 14:32:12 +08:00
0f22f60170
old-commit-hash: c131f9db57
9 lines
328 B
Python
9 lines
328 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)
|
|
|
|
if GetOption("test"):
|
|
env.Program("ubloxd_test", ["ubloxd_test.cc", "ublox_msg.cc", "ubloxd_main.cc"], LIBS=loc_libs)
|