forked from sialan-labs/sigram
-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcutegram.pro
68 lines (60 loc) · 1.32 KB
/
cutegram.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
CONFIG += c++11
TARGET = cutegram
QT += qml quick gui widgets core asemancore asemangui asemanqml sql
LIBS += -lqt5keychain
TEMPLATE = app
SOURCES += main.cpp
RESOURCES += \
resource.qrc \
emojis/emojis.qrc
SHORTCUT = cutegram
OTHER_FILES += $$files(*, true)
VERSION = 3.0
shortcut.input = share/Cutegram.desktop.in
shortcut.output = share/Cutegram.desktop
shortcut.path = $$PREFIX/share/applications/
shortcut.files = $$shortcut.output
icons.path = $$PREFIX/share/icons
icons.files = share/hicolor
pixmaps.path = $$PREFIX/share/pixmaps
pixmaps.files = share/cutegram.png
qmlFiles.path = $$PREFIX/share/cutegram/$$VERSION/
qmlFiles.files = \
about \
add \
app \
account \
authenticating \
awesome \
configure \
contacts \
emojis \
globals \
images \
inputs \
medias \
messages \
sidebar \
sounds \
thirdparty \
toolkit \
tools \
main.qml \
GPL.txt \
LICENSE
QMAKE_SUBSTITUTES += shortcut
contains(CONFIG, binaryMode) {
target.path = $$PREFIX/bin
INSTALLS += target
} else {
INSTALLS += qmlFiles
}
INSTALLS += shortcut icons pixmaps
DISTFILES += \
AddWidgets/AddGroup.qml
HEADERS += \
core/asemancontributorsmodel.h \
core/asemankeychain.h
SOURCES += \
core/asemancontributorsmodel.cpp \
core/asemankeychain.cpp