aboutsummaryrefslogtreecommitdiff
path: root/test cases/frameworks
diff options
context:
space:
mode:
authorLuca Weiss <luca@z3ntu.xyz>2020-12-08 22:37:05 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2021-02-07 22:43:00 +0200
commit398df5629863e913fa603cbf02c525a9f501f8a8 (patch)
tree4ca64a52c67ef6d79ee0ee609ff23c6218551fed /test cases/frameworks
parenta855bcab1ccaff68155374c53896c1a780337f40 (diff)
downloadmeson-398df5629863e913fa603cbf02c525a9f501f8a8.zip
meson-398df5629863e913fa603cbf02c525a9f501f8a8.tar.gz
meson-398df5629863e913fa603cbf02c525a9f501f8a8.tar.bz2
Add Qt6 module
Diffstat (limited to 'test cases/frameworks')
-rw-r--r--test cases/frameworks/4 qt/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/test cases/frameworks/4 qt/meson.build b/test cases/frameworks/4 qt/meson.build
index 8f18809..fb7bd5a 100644
--- a/test cases/frameworks/4 qt/meson.build
+++ b/test cases/frameworks/4 qt/meson.build
@@ -3,10 +3,13 @@ project('qt4 and 5 build test', 'cpp',
default_options : ['cpp_std=c++11'])
qt5_modules = ['Widgets']
-foreach qt : ['qt4', 'qt5']
+qt6_modules = ['Widgets']
+foreach qt : ['qt4', 'qt5', 'qt6']
qt_modules = ['Core', 'Gui']
if qt == 'qt5'
qt_modules += qt5_modules
+ elif qt == 'qt6'
+ qt_modules += qt6_modules
endif
# Test that invalid modules are indeed not found