The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
522 B

# SPDX-License-Identifier: Apache-2.0
4 years ago
# Copyright 2020 The Meson development team
from __future__ import annotations
import typing as T
4 years ago
from .qt import QtBaseModule
from . import ModuleInfo
4 years ago
if T.TYPE_CHECKING:
from ..interpreter import Interpreter
4 years ago
class Qt6Module(QtBaseModule):
INFO = ModuleInfo('qt6', '0.57.0')
def __init__(self, interpreter: Interpreter):
4 years ago
QtBaseModule.__init__(self, interpreter, qt_version=6)
def initialize(interp: Interpreter) -> Qt6Module:
return Qt6Module(interp)