mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
488bbcaaa4
old-commit-hash: e0e7c7486d653a550c596f9dca7e5b6424d4c05d
16 lines
322 B
Python
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)
|