mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
meson: build caca plugin
https://bugzilla.gnome.org/show_bug.cgi?id=784134
This commit is contained in:
parent
5dcf2def4e
commit
173d99e7e2
2 changed files with 12 additions and 1 deletions
11
ext/libcaca/meson.build
Normal file
11
ext/libcaca/meson.build
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
libcaca_dep = dependency('caca', required : false)
|
||||||
|
|
||||||
|
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
|
|
@ -4,7 +4,7 @@ subdir('flac')
|
||||||
subdir('gdk_pixbuf')
|
subdir('gdk_pixbuf')
|
||||||
subdir('jack')
|
subdir('jack')
|
||||||
subdir('jpeg')
|
subdir('jpeg')
|
||||||
# subdir('libcaca')
|
subdir('libcaca')
|
||||||
# FIXME: dv plugin fails to link with msvc, wants pthread.lib
|
# FIXME: dv plugin fails to link with msvc, wants pthread.lib
|
||||||
if cc.get_id() != 'msvc'
|
if cc.get_id() != 'msvc'
|
||||||
subdir('dv')
|
subdir('dv')
|
||||||
|
|
Loading…
Reference in a new issue