1twolame_dep = dependency('twolame', version : '>= 0.3.10', required : get_option('twolame')) 2 3if twolame_dep.found() 4 twolame = library('gsttwolame', 5 ['gsttwolamemp2enc.c'], 6 c_args : gst_plugins_good_args, 7 include_directories : [configinc, libsinc], 8 dependencies : [gstaudio_dep, twolame_dep], 9 install : true, 10 install_dir : plugins_install_dir, 11 ) 12 pkgconfig.generate(twolame, install_dir : plugins_pkgconfig_install_dir) 13endif 14