blob: 111c28459abad6b66c791e46a9d5a62bdd42add8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
QT += qml quick
TARGET = touch
!no_desktop: QT += widgets
include(src/src.pri)
include(../shared/shared.pri)
OTHER_FILES += \
main.qml \
content/AndroidDelegate.qml \
content/ButtonPage.qml \
content/ListPage.qml \
content/ProgressBarPage.qml \
content/SliderPage.qml \
content/TabBarPage.qml \
content/TextInputPage.qml
RESOURCES += \
resources.qrc
target.path = $$[QT_INSTALL_EXAMPLES]/quickcontrols/controls/touch
INSTALLS += target
|