Checks for GL, Qt5, and C++ are still automagic. FIXMEs have been added for these so they can be fixed later. https://bugzilla.gnome.org/show_bug.cgi?id=795107
12 lines
364 B
Meson
12 lines
364 B
Meson
libcaca_dep = dependency('caca', required : get_option('caca'))
|
|
|
|
if libcaca_dep.found()
|
|
library('gstcacasink', 'gstcacasink.c',
|
|
c_args : gst_plugins_good_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, gstbase_dep, libcaca_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
endif
|