mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 03:22:07 +08:00
cb3a834067
* Initial commit * fix release/file_common * Update common/swaglog.cc * Swtiched serialize cc * move to lfs --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com> old-commit-hash: ee036482b8152f0e7650895c6f4bac5d4f00e00f
7 lines
299 B
Python
7 lines
299 B
Python
Import('env', 'cereal', 'messaging', 'common')
|
|
libs = [cereal, messaging, 'pthread', 'zmq', 'capnp', 'kj', 'common', 'zmq']
|
|
env.Program('proclogd', ['main.cc', 'proclog.cc'], LIBS=libs)
|
|
|
|
if GetOption('extras'):
|
|
env.Program('tests/test_proclog', ['tests/test_proclog.cc', 'proclog.cc'], LIBS=libs)
|