mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 00:36:51 +00:00
meson: Added meson.build for gsm
https://bugzilla.gnome.org/show_bug.cgi?id=784646
This commit is contained in:
parent
c29843dc94
commit
c360ceea4d
2 changed files with 14 additions and 1 deletions
13
ext/gsm/meson.build
Normal file
13
ext/gsm/meson.build
Normal file
|
@ -0,0 +1,13 @@
|
|||
gsm_dep = cc.find_library('gsm', required : false)
|
||||
|
||||
if gsm_dep.found() and (cc.has_header_symbol('gsm.h', 'gsm_create') or
|
||||
cc.has_header_symbol('gsm/smg.h', 'gsm_create'))
|
||||
gstgsm = library('gstgsm',
|
||||
['gstgsm.c', 'gstgsmenc.c', 'gstgsmdec.c'],
|
||||
c_args : gst_plugins_bad_args,
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstaudio_dep, gsm_dep],
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
)
|
||||
endif
|
|
@ -16,7 +16,7 @@ subdir('flite')
|
|||
subdir('fluidsynth')
|
||||
subdir('gl')
|
||||
#subdir('gme')
|
||||
#subdir('gsm')
|
||||
subdir('gsm')
|
||||
subdir('gtk')
|
||||
subdir('hls')
|
||||
subdir('iqa')
|
||||
|
|
Loading…
Reference in a new issue