summaryrefslogtreecommitdiff
path: root/src/extras/extras.pro
blob: a0c3e5b2dfc7fd08996f6c73db44984b1061eb61 (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
31
32
33
34
35
36
37
38
39
40
41
TARGET = qtquickextrasplugin
TARGETPATH = QtQuick/Extras
IMPORT_VERSION = 1.3

QT += qml

# Qt 5.1 requires a different set of includes for .qdocconf
equals(QT_MAJOR_VERSION, 5):!greaterThan(QT_MINOR_VERSION, 1) {
    QMAKE_DOCS = $$PWD/doc/compat/qtquickextras.qdocconf
} else {
    QMAKE_DOCS = $$PWD/doc/qtquickextras.qdocconf
}

CONTROLS_QML_FILES = \
    CircularGauge.qml \
    DelayButton.qml \
    Dial.qml \
    Gauge.qml \
    StatusIndicator.qml \
    PieMenu.qml \
    ToggleButton.qml \
    Tumbler.qml \
    TumblerColumn.qml

HEADERS += plugin.h \
    qquicktriggermode_p.h \
    qquickpicture_p.h
SOURCES += plugin.cpp \
    qquickpicture.cpp

include(Private/private.pri)
include(designer/designer.pri)

OTHER_FILES += doc/src/*

RESOURCES += extras.qrc

TR_EXCLUDE += designer/*

CONFIG += no_cxx_module
load(qml_plugin)