summaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/__init__.py
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 /mesonbuild/dependencies/__init__.py
parenta855bcab1ccaff68155374c53896c1a780337f40 (diff)
downloadmeson-398df5629863e913fa603cbf02c525a9f501f8a8.tar.gz
Add Qt6 module
Diffstat (limited to 'mesonbuild/dependencies/__init__.py')
-rw-r--r--mesonbuild/dependencies/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/__init__.py b/mesonbuild/dependencies/__init__.py
index 7110c1f73..44105f2df 100644
--- a/mesonbuild/dependencies/__init__.py
+++ b/mesonbuild/dependencies/__init__.py
@@ -30,7 +30,7 @@ from .misc import (
shaderc_factory, threads_factory,
)
from .platform import AppleFrameworks
-from .ui import GnuStepDependency, Qt4Dependency, Qt5Dependency, WxDependency, gl_factory, sdl2_factory, vulkan_factory
+from .ui import GnuStepDependency, Qt4Dependency, Qt5Dependency, Qt6Dependency, WxDependency, gl_factory, sdl2_factory, vulkan_factory
# This is a dict where the keys should be strings, and the values must be one
@@ -77,6 +77,7 @@ packages.update({
'gnustep': GnuStepDependency,
'qt4': Qt4Dependency,
'qt5': Qt5Dependency,
+ 'qt6': Qt6Dependency,
'sdl2': sdl2_factory,
'wxwidgets': WxDependency,
'vulkan': vulkan_factory,