-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGradleCopy.pro
More file actions
46 lines (38 loc) · 793 Bytes
/
GradleCopy.pro
File metadata and controls
46 lines (38 loc) · 793 Bytes
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
TEMPLATE = app
TARGET = GradleCopy
DESTDIR = bin
QT += core gui network xml
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG(release, debug|release) {
CONFIG += qt_static
#CONFIG += static_runtime
CONFIG += force_debug_info
}
win32 {
RC_FILE = $$PWD/assets/main.rc
DESTDIR = GradleCopy-win-x86
}
isXD {
copyOpenSSL()
CONFIG(debug, debug|release): !qt_static: copyModules()
}
SOURCES += \
main.cpp\
mainwindow.cpp \
copythread.cpp \
listview.cpp \
filedownloader.cpp \
downloadthread.cpp \
project-info.cpp
HEADERS += \
mainwindow.h \
copythread.h \
listview.h \
filedownloader.h \
downloadthread.h \
project-info.h
FORMS += \
mainwindow.ui \
listview.ui
RESOURCES += \
assets/assets.qrc