aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/qtqml/qtqml.pro
blob: eac19954b65040cc9d7713b77b0249d264ea4d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
TARGETPATH = QtQml
CXX_MODULE = qml
TARGET  = qmlplugin
QML_IMPORT_VERSION = $$QT_VERSION

SOURCES += \
    plugin.cpp

# In Qt6 we won't need qmlmodels-private here
QT = qml-private qmlmodels-private

DYNAMIC_QMLDIR = \
    "module QtQml" \
    "plugin qmlplugin" \
    "classname QtQmlPlugin" \
    "typeinfo plugins.qmltypes" \
    "designersupported" \
    "import QtQml.Models"

qtConfig(qml-worker-script): DYNAMIC_QMLDIR += \
    "import QtQml.WorkerScript"

load(qml_plugin)