mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
eadedc68f8
GL dependency detection is still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
21 lines
721 B
Meson
21 lines
721 B
Meson
libvisual_sources = [
|
|
'visual.c',
|
|
'plugin.c',
|
|
]
|
|
|
|
libvisual_dep = dependency('libvisual-0.4', version : '>= 0.4.0',
|
|
required : get_option('libvisual'))
|
|
if libvisual_dep.found()
|
|
core_conf.set_quoted('LIBVISUAL_PLUGINSBASEDIR',
|
|
libvisual_dep.get_pkgconfig_variable('pluginsbasedir'))
|
|
|
|
gstlibvisual = library('gstlibvisual',
|
|
libvisual_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : glib_deps + [libvisual_dep, audio_dep, video_dep, pbutils_dep, gst_dep, gst_base_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstlibvisual, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|