mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
cebe940c12
All options must match the plugin directory name.
11 lines
367 B
Meson
11 lines
367 B
Meson
libcaca_dep = dependency('caca', required : get_option('libcaca'))
|
|
|
|
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
|