forked from LazyT/rrcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rrcc.pro
42 lines (31 loc) · 1.5 KB
/
rrcc.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
QT += core gui widgets network
TARGET = rrcc
SOURCES += mainwindow.cpp history.cpp timer.cpp setup.cpp logger.cpp upload.cpp packager.cpp unpackager.cpp converter.cpp about.cpp zones.cpp installer.cpp uninstaller.cpp update.cpp
HEADERS += mainwindow.h history.h timer.h setup.h logger.h upload.h packager.h unpackager.h converter.h about.h zones.h installer.h uninstaller.h update.h
INCLUDEPATH += ext/qaes
SOURCES += ext/qaes/qaesencryption.cpp
HEADERS += ext/qaes/qaesencryption.h
QT += concurrent
INCLUDEPATH += ext/qarchive
SOURCES += ext/qarchive/qarchive.cpp
HEADERS += ext/qarchive/qarchive.h
LIBS += -larchive
INCLUDEPATH += ext/ccrypt
SOURCES += ext/ccrypt/ccryptlib.c ext/ccrypt/rijndael.c ext/ccrypt/tables.c ext/ccrypt/platform.c
HEADERS += ext/ccrypt/ccryptlib.h ext/ccrypt/rijndael.h ext/ccrypt/tables.h ext/ccrypt/platform.h
INCLUDEPATH += ext/qsshsocket
SOURCES += ext/qsshsocket/qsshsocket.cpp
HEADERS *= ext/qsshsocket/qsshsocket.h
LIBS += -lssh
FORMS += res/ui/mainwindow.ui res/ui/history.ui res/ui/timer.ui res/ui/setup.ui res/ui/logger.ui res/ui/upload.ui res/ui/packager.ui res/ui/unpackager.ui res/ui/converter.ui res/ui/about.ui res/ui/zones.ui res/ui/installer.ui res/ui/uninstaller.ui res/ui/update.ui
RESOURCES += res/rrcc.qrc
TRANSLATIONS+= lng/rrcc_de.ts
unix:!macx {
QMAKE_LFLAGS+= -Wl,-rpath=.
}
win32 {
RC_ICONS += res/ico/app.ico
}
macx {
ICON += res/ico/app.icns
}