forked from journeymidnight/S3ClientGUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathS3ClientGUI.pro
68 lines (53 loc) · 1.32 KB
/
S3ClientGUI.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
#-------------------------------------------------
#
# Project created by QtCreator 2017-03-27T13:46:41
#
#-------------------------------------------------
QT += core gui
QT += concurrent
QT += sql
win32: QT += winextras
CONFIG += c++11
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = S3ClientGUI
TEMPLATE = app
unix: CONFIG += link_pkgconfig
unix: PKGCONFIG += aws-cpp-sdk-s3
mac: LIBS += -lcurl
SOURCES += main.cpp\
mainwindow.cpp \
../s3util/actions.cpp \
../s3util/qs3client.cpp \
s3treemodel.cpp \
s3item.cpp \
qfilesystemview.cpp \
../s3util/qlogs3.cpp \
qtaskmodel.cpp \
transferwidget.cpp \
filesystemmodel.cpp \
driveselectwidget.cpp \
editaccountdialog.cpp \
qs3config.cpp
HEADERS += mainwindow.h \
../s3util/qs3client.h \
../s3util/actions.h \
s3treemodel.h \
s3item.h \
qfilesystemview.h \
../s3util/qlogs3.h \
qtaskmodel.h \
transferwidget.h \
filesystemmodel.h \
driveselectwidget.h \
editaccountdialog.h \
qs3config.h
FORMS += mainwindow.ui \
editaccountdialog.ui
DISTFILES += \
README.md
RESOURCES += \
resource.qrc
RC_ICONS = images/Main.ico
# Single Application implementation
include(SingleApplication/singleapplication.pri)
DEFINES += QAPPLICATION_CLASS=QApplication