fdkaac: Add meson.build

This commit is contained in:
Sebastian Dröge 2016-11-02 20:14:23 +02:00
parent 33a93a66c8
commit 2bcb928e30
2 changed files with 13 additions and 0 deletions

12
ext/fdkaac/meson.build Normal file
View file

@ -0,0 +1,12 @@
fdkaac_dep = dependency('fdk-aac', required : false)
if fdkaac_dep.found()
gstfdkaac = library('gstfdkaac',
['plugin.c', 'gstfdkaacenc.c', 'gstfdkaacdec.c'],
c_args : gst_plugins_bad_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, gstpbutils_dep, fdkaac_dep],
install : true,
install_dir : plugins_install_dir,
)
endif

View file

@ -12,6 +12,7 @@ subdir('dtls')
subdir('dts')
subdir('faac')
subdir('faad')
subdir('fdkaac')
subdir('flite')
subdir('fluidsynth')
subdir('gl')