forked from nemomobile/qmlclock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clocks.pro
33 lines (28 loc) · 818 Bytes
/
clocks.pro
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
TEMPLATE = app
TARGET = qmlclock
QT += qml quick
SOURCES += main.cpp
RESOURCES += \
res.qrc
target.path = /usr/bin
INSTALLS += target
desktop.path = /usr/share/applications
desktop.files = qmlclock.desktop
INSTALLS += desktop
CONFIG += link_pkgconfig
packagesExist(qdeclarative5-boostable) {
message("Building with qdeclarative5-boostable support")
DEFINES += HAS_BOOSTER
PKGCONFIG += qdeclarative5-boostable
} else {
warning("qdeclarative5-boostable not available; startup times will be slower")
}
OTHER_FILES += \
qml/clocks.qml \
qml/content/DateDisplay.qml \
qml/content/AlarmTimePickerDialog.qml \
qml/content/AlarmModel.qml \
qml/content/AlarmDialog.qml \
qml/content/TumblerIndexHelper.js \
qml/content/clockHelper.js \
qml/content/AlarmViewRepeater.qml