-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuneiform-qt.pro
52 lines (37 loc) · 1.02 KB
/
cuneiform-qt.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
######################################################################
# Common settings
TEMPLATE = app
TARGET = cuneiform-qt
VERSION = 0.1.4
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
}
SOURCES += backend.cpp \
main.cpp \
mainWindow.cpp \
settings.cpp
HEADERS += backend.h \
mainWindow.h \
settings.h
QMAKE_STRIP = echo
CONFIG += build_all \
exceptions \
qt \
warn_on
RESOURCES = mainWindow.qrc
FORMS += mainWindow.ui \
settings.ui
PREFIX = /usr
DATADIR = $$PREFIX/share/apps/cuneiform-qt/
TRANSLATIONS_DIR = $$DATADIR
isEmpty(NO_TRANSLATIONS):include("translations/translations.pri")
DEFINES += DATADIR=\\\"$$PREFIX/share/apps/cuneiform-qt/\\\" \
VERSION=\\\"$$VERSION\\\"
target.path = $$PREFIX/bin/
icon.files = icons/cuneiform-qt.png
icon.path = $$PREFIX/share/pixmaps/
desktop.files = cuneiform-qt.desktop
desktop.path = $$PREFIX/share/applications/
INSTALLS += target \
icon \
desktop