mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
c5cddfcec4
The only automagic dependency left is C++ availability detection. https://bugzilla.gnome.org/show_bug.cgi?id=795107
25 lines
883 B
Meson
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
|