diff options
author | Carlo Bramini <carlo_bramini@users.sourceforge.net> | 2024-05-09 13:47:30 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2024-11-30 11:23:58 -0500 |
commit | e0cd96d8502e8e1364120f05944208dc5523771d (patch) | |
tree | ee2633d63dcd65c756f7d76ecee4e8c3fb6900da | |
parent | 955730520c412179ccda1e1435aca98b37ea0e03 (diff) | |
download | suil-e0cd96d8502e8e1364120f05944208dc5523771d.tar.gz suil-e0cd96d8502e8e1364120f05944208dc5523771d.tar.bz2 suil-e0cd96d8502e8e1364120f05944208dc5523771d.zip |
Fix linker error in x11_in_qt5 on Cygwin
-rw-r--r-- | meson.build | 4 |
1 files 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, |