-
Notifications
You must be signed in to change notification settings - Fork 7
/
qmlcalc.pro
43 lines (32 loc) · 949 Bytes
/
qmlcalc.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
34
35
36
37
38
39
40
41
42
43
######################################################################
# Automatically generated by qmake (2.01a) Fri Sep 9 22:39:33 2011
######################################################################
QT += qml quick
TEMPLATE = app
TARGET = qmlcalc
DEPENDPATH += .
INCLUDEPATH += .
# Input
SOURCES += main.cpp
OTHER_FILES += \
calculator.js \
main.qml \
Display.qml \
CalcButton.qml \
HistoryDisplay.qml
target.path = /usr/bin
INSTALLS += target
desktop.path = /usr/share/applications
desktop.files = qmlcalc.desktop
INSTALLS += desktop
qml.path = $${INSTAL_ROOT}/usr/share/qmlcalc
qml.files = *.qml *.js
INSTALLS += qml
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")
}