From e0cd96d8502e8e1364120f05944208dc5523771d Mon Sep 17 00:00:00 2001 From: Carlo Bramini Date: Thu, 9 May 2024 13:47:30 +0000 Subject: Fix linker error in x11_in_qt5 on Cygwin --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 22be3d3..8feb798 100644 --- a/meson.build +++ b/meson.build @@ -419,12 +419,12 @@ if gtk2_dep.found() and host_machine.system() == 'windows' ) endif -if qt5_dep.found() and qt5_x11_dep.found() +if qt5_dep.found() and qt5_x11_dep.found() and x11_dep.found() shared_module( 'suil_x11_in_qt5', files('src/x11_in_qt.cpp'), cpp_args: cpp_suppressions + platform_defines, - dependencies: [lv2_dep, qt5_dep, qt5_x11_dep], + dependencies: [lv2_dep, qt5_dep, qt5_x11_dep, x11_dep], gnu_symbol_visibility: 'hidden', include_directories: include_dirs, install: true, -- cgit v1.2.1