aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/labsmodels/labsmodels.pro
blob: 9fc52ce9cc538321dc4dcf0d658bc6f5123ef8bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
CXX_MODULE = qml
TARGET  = labsmodelsplugin
TARGETPATH = Qt/labs/qmlmodels
QML_IMPORT_VERSION = $$QT_VERSION

QT = qml-private qmlmodels-private

SOURCES += \
    plugin.cpp

qtConfig(qml-table-model) {
    SOURCES += \
        $$PWD/qqmltablemodel.cpp \
        $$PWD/qqmltablemodelcolumn.cpp

    HEADERS += \
        $$PWD/qqmltablemodel_p.h \
        $$PWD/qqmltablemodelcolumn_p.h
}

qtConfig(qml-delegate-model) {
    SOURCES += \
        qqmldelegatecomponent.cpp

    HEADERS += \
        qqmldelegatecomponent_p.h
}

CONFIG += qmltypes install_qmltypes
load(qml_plugin)