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.
12 lines
392 B
12 lines
392 B
4 years ago
|
Import('qt_env', 'messaging')
|
||
|
|
||
|
qt_env['CPPPATH'] += ["#tools/clib"]
|
||
|
qt_env['CXXFLAGS'] += ["-Wno-deprecated-declarations"]
|
||
|
|
||
|
libs = [messaging, 'avutil', 'avcodec', 'avformat', 'bz2', 'capnp', 'kj',
|
||
|
'pthread', 'swscale', 'zmq']
|
||
|
|
||
|
qt_env.Program("_nui",
|
||
|
['main.cpp', 'Unlogger.cpp', 'FileReader.cpp', '../clib/FrameReader.cpp'],
|
||
|
LIBS=qt_env['LIBS'] + libs)
|