* Create system/ for generic services * logcatd joins the party * fix those up old-commit-hash: afd16b2ade7723d87a15fa6c5f5de59734897f51
7 lines
307 B
Python
7 lines
307 B
Python
Import('env', 'cereal', 'messaging', 'common')
|
|
libs = [cereal, messaging, 'pthread', 'zmq', 'capnp', 'kj', 'common', 'zmq', 'json11']
|
|
env.Program('proclogd', ['main.cc', 'proclog.cc'], LIBS=libs)
|
|
|
|
if GetOption('test'):
|
|
env.Program('tests/test_proclog', ['tests/test_proclog.cc', 'proclog.cc'], LIBS=libs)
|