mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
fdkaac: Add meson.build
This commit is contained in:
parent
33a93a66c8
commit
2bcb928e30
2 changed files with 13 additions and 0 deletions
12
ext/fdkaac/meson.build
Normal file
12
ext/fdkaac/meson.build
Normal 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
|
|
@ -12,6 +12,7 @@ subdir('dtls')
|
|||
subdir('dts')
|
||||
subdir('faac')
|
||||
subdir('faad')
|
||||
subdir('fdkaac')
|
||||
subdir('flite')
|
||||
subdir('fluidsynth')
|
||||
subdir('gl')
|
||||
|
|
Loading…
Reference in a new issue