-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkutegramquick.pro
102 lines (85 loc) · 3 KB
/
kutegramquick.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
TARGET = Kutegram
APPNAME = Kutegram
VERSION = 1.0.0
DEFINES += VERSION=\"\\\"$$VERSION\\\"\"
#DATE = $$system(date /t)
#DEFINES += BUILDDATE=\"\\\"$$DATE\\\"\"
#COMMIT_SHA = $$system(git log --pretty=format:%h -n 1);
#DEFINES += COMMIT_SHA=\"\\\"$$COMMIT_SHA\\\"\"
QT += core declarative network xml
DEFINES += QT_USE_FAST_CONCATENATION QT_USE_FAST_OPERATOR_PLUS
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT KG_NO_DEBUG KG_NO_INFO
QML_IMPORT_PATH =
win32:RC_FILE = kutegramquick.rc
macx:ICON = kutegramquick.icns
symbian {
ICON = kutegramquick.svg
TARGET.UID3 = 0xE0713D51
DEFINES += SYMBIAN_UID=$$TARGET.UID3
TARGET.CAPABILITY += ReadUserData WriteUserData UserEnvironment NetworkServices LocalServices
#TARGET.EPOCHEAPSIZE = 0x400000 0x4000000
#TARGET.EPOCSTACKSIZE = 0x14000
supported_platforms = \
"[0x1028315F],0,0,0,{\"S60ProductID\"}" \ # Symbian^1
"[0x20022E6D],0,0,0,{\"S60ProductID\"}" \ # Symbian^3
"[0x102032BE],0,0,0,{\"S60ProductID\"}" \ # Symbian 9.2
"[0x102752AE],0,0,0,{\"S60ProductID\"}" \ # Symbian 9.3
"[0x2003A678],0,0,0,{\"S60ProductID\"}" # Symbian Belle
default_deployment.pkg_prerules -= pkg_platform_dependencies
supported_platforms_deployment.pkg_prerules += supported_platforms
DEPLOYMENT += supported_platforms_deployment
vendor_info = \
" " \
"; Localised Vendor name" \
"%{\"curoviyxru\"}" \
" " \
"; Unique Vendor name" \
":\"curoviyxru\"" \
" "
header = "$${LITERAL_HASH}{\"Kutegram\"},(0xE0713D51),0,2,0,TYPE=SA,RU"
package.pkg_prerules += vendor_info header
DEPLOYMENT += package
DEPLOYMENT.installer_header = "$${LITERAL_HASH}{\"Kutegram Installer\"},(0xE5E0AFB2),0,2,0"
}
SOURCES += main.cpp \
dialogsmodel.cpp \
messagesmodel.cpp \
messageeditor.cpp \
avatardownloader.cpp
HEADERS += \
dialogsmodel.h \
messagesmodel.h \
messageeditor.h \
avatardownloader.h
OTHER_FILES += \
qtc_packaging/debian_harmattan/rules \
qtc_packaging/debian_harmattan/README \
qtc_packaging/debian_harmattan/copyright \
qtc_packaging/debian_harmattan/control \
qtc_packaging/debian_harmattan/compat \
qtc_packaging/debian_harmattan/changelog \
qml/main.qml \
qml/auth/Button.qml \
qml/auth/CodePage.qml \
qml/auth/IntroPage.qml \
qml/auth/PhonePage.qml \
qml/control/Drawer.qml \
qml/control/DrawerButton.qml \
qml/control/LineEdit.qml \
qml/control/Spinner.qml \
qml/control/Stack.qml \
qml/control/TopBar.qml \
qml/dialog/DialogItem.qml \
qml/dialog/DialogPage.qml \
qml/dialog/FolderItem.qml \
qml/message/MessageDocument.qml \
qml/message/MessageEdit.qml \
qml/message/MessageImage.qml \
qml/message/MessageItem.qml \
qml/message/MessagePage.qml \
qml/control/SnackBar.qml
RESOURCES += \
resources.qrc
include(libkg/libkg.pri)
include(qmlapplicationviewer/qmlapplicationviewer.pri)
qtcAddDeployment()