mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 22:21:13 +00:00
21 lines
513 B
Meson
21 lines
513 B
Meson
|
flac_sources = [
|
||
|
'gstflac.c',
|
||
|
'gstflacdec.c',
|
||
|
'gstflacenc.c',
|
||
|
'gstflactag.c',
|
||
|
]
|
||
|
|
||
|
flac_dep = dependency('flac', version : '>=1.1.4', required : false)
|
||
|
|
||
|
if flac_dep.found()
|
||
|
gstflac = library('gstflac',
|
||
|
flac_sources,
|
||
|
c_args : gst_plugins_good_args + ['-DGST_USE_UNSTABLE_API'],
|
||
|
link_args : noseh_link_args,
|
||
|
include_directories : [configinc, libsinc],
|
||
|
dependencies : [gstbase_dep, gsttag_dep, gstaudio_dep, flac_dep],
|
||
|
install : true,
|
||
|
install_dir : plugins_install_dir,
|
||
|
)
|
||
|
endif
|