Moving mpg123 plugin from -ugly
[platform/upstream/gstreamer.git] / ext / aalib / meson.build
1 # Very much not going to implement all kinds of logic around aalib-config
2 # or cater for non-standard prefixes.
3 if cc.has_header('aalib.h')
4   libaa_dep = cc.find_library('aa', required : false)
5   if libaa_dep.found()
6     library('gstaasink', 'gstaasink.c',
7       c_args : gst_plugins_good_args,
8       link_args : noseh_link_args,
9       include_directories : [configinc],
10       dependencies : [gstvideo_dep, gstbase_dep, libaa_dep],
11       install : true,
12       install_dir : plugins_install_dir)
13   endif
14 endif