You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
382 B
13 lines
382 B
5 years ago
|
Import('env', 'arch', 'messaging', 'common', 'visionipc')
|
||
|
|
||
|
src = ['loggerd.cc', 'logger.c']
|
||
|
libs = ['zmq', 'czmq', 'capnp', 'kj', 'yaml-cpp', 'z',
|
||
|
'avformat', 'avcodec', 'swscale', 'avutil',
|
||
|
'yuv', 'bz2', common, 'json', messaging, visionipc]
|
||
|
|
||
|
if arch == "aarch64":
|
||
|
src += ['encoder.c', 'raw_logger.cc']
|
||
|
libs += ['OmxVenc', 'OmxCore', 'cutils']
|
||
|
|
||
|
env.Program(src, LIBS=libs)
|