gstreamer/ext/theora/meson.build
2019-05-13 11:34:08 -04:00

32 lines
1 KiB
Meson

theora_sources = [
'gsttheora.c',
'gsttheoraparse.c',
]
theoradec_dep = dependency('theoradec', version : '>=1.1', required : get_option('theora'))
theoraenc_dep = dependency('theoraenc', version : '>=1.1', required : get_option('theora'))
core_conf.set('HAVE_THEORA', theoradec_dep.found() and theoraenc_dep.found())
theora_deps = []
if theoradec_dep.found() or theoraenc_dep.found()
if theoradec_dep.found()
theora_sources += [ 'gsttheoradec.c' ]
theora_deps += theoradec_dep
endif
if theoraenc_dep.found()
theora_sources += [ 'gsttheoraenc.c' ]
theora_deps += theoraenc_dep
endif
gsttheora = library('gsttheora',
theora_sources,
c_args : gst_plugins_base_args,
link_args : noseh_link_args,
include_directories: [configinc, libsinc],
dependencies : theora_deps + glib_deps + [video_dep, tag_dep, gst_dep, gst_base_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gsttheora, install_dir : plugins_pkgconfig_install_dir)
plugins += [gsttheora]
endif