diff --git a/ext/sidplay/meson.build b/ext/sidplay/meson.build index ebc2a2a2db..5940ce9b79 100644 --- a/ext/sidplay/meson.build +++ b/ext/sidplay/meson.build @@ -8,7 +8,7 @@ if add_languages('cpp') void somefunc (void) { sidTune tune = sidTune(0); }''' - sidplay_dep = cxx.find_library('sidplay') + sidplay_dep = cxx.find_library('sidplay', required: false) if sidplay_dep.found() have_sidplay = cxx.compiles(sid_code, dependencies: sidplay_dep, name : 'sidplay') endif