summaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/__init__.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-03-22 10:56:13 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-03-22 10:56:13 -0700
commit73eb24432b16e53bd6f9d12969ce8697ca2ba2ea (patch)
treee886ece4c647de0faf95321ab190a3e08f4400ee /mesonbuild/dependencies/__init__.py
parent9dc7abe697af9e53fcd9783f6b2f5b2e223ba3c6 (diff)
downloadmeson-73eb24432b16e53bd6f9d12969ce8697ca2ba2ea.tar.gz
dependencies: split qt out of the ui module
It's a big enough and complicated enough bit of code that it deserves its own 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 91d3d8732..416325d4c 100644
--- a/mesonbuild/dependencies/__init__.py
+++ b/mesonbuild/dependencies/__init__.py
@@ -31,7 +31,8 @@ from .misc import (
shaderc_factory, threads_factory,
)
from .platform import AppleFrameworks
-from .ui import GnuStepDependency, Qt4Dependency, Qt5Dependency, Qt6Dependency, WxDependency, gl_factory, sdl2_factory, vulkan_factory
+from .qt import Qt4Dependency, Qt5Dependency, Qt6Dependency
+from .ui import GnuStepDependency, WxDependency, gl_factory, sdl2_factory, vulkan_factory
"""Dependency representations and discovery logic.