-
Notifications
You must be signed in to change notification settings - Fork 0
/
backy.pro
51 lines (37 loc) · 977 Bytes
/
backy.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
QT += core gui widgets
unix:!macx {
QMAKE_CXXFLAGS += $$QMAKE_CFLAGS -std=c++11
}
TARGET = backy
TEMPLATE = app
HEADERS = include/common.h \
include/interface.h \
include/logger.h \
include/preferences.h \
include/worker.h
SOURCES += src/interface.cpp \
src/logger.cpp \
src/preferences.cpp \
src/worker.cpp \
src/main.cpp
RESOURCES += res/backy.qrc
RC_FILE = res/backy.rc
FORMS += src/interface.ui \
src/preferences.ui
TRANSLATIONS += translate/backy_sk.ts \
translate/backy_fr.ts
unix:!macx {
program.files = backy
program.path = $$(DESTDIR)/bin
language.files = translate/backy_sk.qm \
translate/backy_fr.qm
language.path = $$(DESTDIR)/bin/translations
icon.files = res/backy.png
icon.path = $$(DESTDIR)/usr/share/pixmaps
launcher.files = res/backy.desktop
launcher.path = $$(DESTDIR)/usr/share/applications
INSTALLS += program \
language \
icon \
launcher
}