diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +suil (0.10.17) unstable; urgency=medium + + * Fix MacOS build when Gtk3 and Qt5 are present without X11 + + -- David Robillard <d@drobilla.net> Mon, 15 Aug 2022 21:09:19 +0000 + suil (0.10.16) stable; urgency=medium * Fix wrapper module installation path diff --git a/meson.build b/meson.build index b3d4a8c..a33859a 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('suil', ['c', 'cpp'], - version: '0.10.16', + version: '0.10.17', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -249,7 +249,7 @@ if gtk3_dep.found() and gtk3_x11_dep.found() and x11_dep.found() ) endif -if gtk3_dep.found() and qt5_dep.found() +if gtk3_dep.found() and gtk3_x11_dep.found() and qt5_dep.found() shared_module( 'suil_qt5_in_gtk3', files('src/qt5_in_gtk.cpp'), |