aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/labsmodels/labsmodels.pro
blob: c35e5f963d4aec8e0b26305b06417562169b16a6 (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
CXX_MODULE = qml
TARGET  = labsmodelsplugin
TARGETPATH = Qt/labs/qmlmodels
IMPORT_VERSION = 1.0

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
}

load(qml_plugin)