-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
umlo.pro
67 lines (56 loc) · 1.63 KB
/
umlo.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
VERSION = 1.0.9
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
RELEASE = 1
DEFINES += APP_RELEASE=\\\"$$RELEASE\\\"
QT += core gui concurrent
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
OUTPUT += Console
# Specifies name of the binary.
TARGET = umlo
# Denotes that project is an application.
TEMPLATE = app
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
unix {
isEmpty(PREFIXINS) {
PREFIXINS = /usr/share
}
shortcutfiles.path = $$(PREFIXINS)/applications/
shortcutfiles.files = $$PWD/umlo.desktop
iconfiles.path = $$(PREFIXINS)/icons/
iconfiles.files = $$PWD/images/umlo.png
docfiles.path = $$(PREFIXINS)/doc/umlo
docfiles.files += $$PWD/README.md
licfiles.path = $$(PREFIXINS)/licenses/umlo
licfiles.files += $$PWD/LICENSE
translationfiles.path = $$(PREFIXINS)/umlo/translations
translationfiles.files += $$PWD/*.qm
}
SOURCES += \
about.cpp \
main.cpp \
parametres.cpp \
simplecrypt.cpp \
umlo.cpp
HEADERS += \
about.h \
parametres.h \
umlo.h
FORMS += \
about.ui \
parametres.ui \
umlo.ui
TRANSLATIONS += \
umlo_fr_FR.ts
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = $$(PREFIXINS)/../bin
!isEmpty(target.path): INSTALLS += target shortcutfiles iconfiles translationfiles docfiles licfiles
DISTFILES += \
README.md \
umlo.desktop \
images/umlo.ico \
images/umlo.png \
umlo.spec