gstreamer/ext/sidplay/meson.build
Nirbheek Chauhan c5cddfcec4 Add feature options for all plugins
The only automagic dependency left is C++ availability detection.

https://bugzilla.gnome.org/show_bug.cgi?id=795107
2018-07-27 19:34:01 +05:30

25 lines
883 B
Meson

# sidplay plugin works with libsidplay 1.36.x (not 2.x.x)
have_sidplay = false
if have_cxx and not get_option('sidplay').disabled()
if cxx.has_header('sidplay/player.h')
sid_code = '''#include <sidplay/player.h>
void somefunc (void) {
sidTune tune = sidTune(0);
}'''
sidplay_dep = cxx.find_library('sidplay', required: get_option('sidplay'))
if sidplay_dep.found()
have_sidplay = cxx.compiles(sid_code, dependencies: sidplay_dep, name : 'sidplay')
endif
endif
endif
if have_sidplay
shared_module('gstsid', 'gstsiddec.cc',
cpp_args : ugly_args,
include_directories : [configinc],
dependencies : [gstaudio_dep, sidplay_dep],
install : true,
install_dir : plugins_install_dir)
elif get_option('sidplay').enabled()
error('sidplay plugin enabled but dependencies not found')
endif