-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.pro
58 lines (48 loc) · 1.5 KB
/
app.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# The name of your application
TARGET = harbour-currencyconverter
CONFIG += sailfishapp
# App version
DEFINES += APP_VERSION=\"\\\"$${VERSION}\\\"\"
DEPLOYMENT_PATH = /usr/share/$${TARGET}
SOURCES += \
src/$${TARGET}.cpp
OTHER_FILES += Changelog README.md icons flags
DISTFILES += qml/cover/CoverPage.qml \
TODO.md \
qml/$${TARGET}.qml \
qml/components/Cache.qml \
qml/components/Currencies.qml \
qml/components/Currency.qml \
qml/components/CurrencyCombo.qml \
qml/components/CurrencyList.qml \
qml/components/CurrencyModel.qml \
qml/components/CurrencyPair.qml \
# qml/components/qmldir \
qml/components/Env.qml \
qml/components/ExchangeRatesAPIProvider.qml \
qml/components/ExchangeProvider.qml \
qml/components/Network.qml \
qml/components/Notification.qml \
qml/components/Requester.qml \
qml/components/Settings.qml \
qml/components/Storage.qml \
qml/pages/FrontPage.qml \
qml/pages/SettingsDialog.qml \
qml/pages/AboutPage.qml \
rpm/$${TARGET}.changes.in \
rpm/$${TARGET}.changes.run.in \
rpm/$${TARGET}.spec \
rpm/$${TARGET}.yaml \
translations/*.ts \
$${TARGET}.desktop
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
# to disable building translations every time, comment out the
# following CONFIG line
#CONFIG += sailfishapp_i18n
#TRANSLATIONS += translations/*.ts
INSTALLS += flags
flags.files = flags
flags.path = $${DEPLOYMENT_PATH}
INSTALLS += data
data.files = data
data.path = $${DEPLOYMENT_PATH}