-
Notifications
You must be signed in to change notification settings - Fork 20
/
rapidcopy_main.pro
86 lines (75 loc) · 1.46 KB
/
rapidcopy_main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#-------------------------------------------------
#
# Project created by QtCreator 2014-02-24T19:03:31
#
#-------------------------------------------------
QT += gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets multimedia
QMAKE_CXXFLAGS += -std=c++11
#CONFIG parameter detail. Default is Ubuntu.
#If you want to build on CentOS7, Change below.
#CentOS = CentOS7
#CONFIG += CentOS7
TARGET = RapidCopy
DEFINES += _GNU_SOURCE
TRANSLATIONS += RapidCopy_ja_JP.ts
if(CentOS7){
LIBS += /usr/lib64/libacl.so /usr/lib64/libbsd.so
DEFINES += _CENTOS7
}
else{
LIBS += /usr/lib/libacl.so /usr/lib/x86_64-linux-gnu/libbsd.so
DEFINE += _UBUNTU
}
SOURCES += main.cpp \
mainwindow.cpp \
cfg.cpp \
fastcopy.cpp \
osl.cpp \
regexp.cpp \
tapi32ex.cpp \
tapi32v.cpp \
tlist.cpp \
tmisc.cpp \
utility.cpp \
version.cpp \
mainsettingdialog.cpp \
confirmdialog.cpp \
aboutdialog.cpp \
xxhash.c \
finactdialog.cpp \
smtp.cpp \
jobdialog.cpp \
qblowfish.cpp \
joblistrenamedialog.cpp
HEADERS += \
cfg.h \
fastcopy.h \
osl.h \
regexp.h \
tapi32ex.h \
tapi32v.h \
tlib.h \
tmisc.h \
utility.h \
version.h \
resource.h \
mainwindow.h \
mainsettingdialog.h \
confirmdialog.h \
aboutdialog.h \
xxhash.h \
finactdialog.h \
smtp.h \
jobdialog.h \
qblowfish.h \
qblowfish_p.h \
joblistrenamedialog.h
FORMS += mainwindow.ui \
mainsettingdialog.ui \
confirmdialog.ui \
aboutdialog.ui \
finactdialog.ui \
jobdialog.ui \
joblistrenamedialog.ui
RESOURCES += res.qrc