7 lines
321 B
Python
7 lines
321 B
Python
Import('env', 'cereal', 'messaging', 'common', 'arch')
|
|
|
|
if arch == "aarch64":
|
|
env.Program('logcatd', 'logcatd_android.cc', LIBS=[cereal, messaging, common, 'cutils', 'zmq', 'capnp', 'kj'])
|
|
else:
|
|
env.Program('logcatd', 'logcatd_systemd.cc', LIBS=[cereal, messaging, common, 'zmq', 'capnp', 'kj', 'systemd', 'json11'])
|