-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCloudDisk.pro
60 lines (50 loc) · 1.37 KB
/
CloudDisk.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
QT += quick gui qml widgets
QMAKE_PROJECT_DEPTH = 0
SOURCES += \
allfileslistmodel.cpp \
completelistmodel.cpp \
downloadlistmodel.cpp \
ftpclient.cpp \
main.cpp \
qaesencryption.cpp \
qftp.cpp \
qurlinfo.cpp \
selectpathlistmodel.cpp \
uploadlistmodel.cpp
RESOURCES += qml.qrc \
images.qrc
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
win32:CONFIG(release, debug|release):{
DESTDIR =$$PWD/Bin64/CloudDisk
UI_DIR = $$PWD/tmp/release/ui
MOC_DIR = $$PWD/tmp/release/moc
OBJECTS_DIR = $$PWD/tmp/release/obj
RCC_DIR = $$PWD/tmp/release/rcc
}
else:win32:CONFIG(debug, debug|release):{
DESTDIR =$$PWD/Bin64/debug
UI_DIR = $$PWD/tmp/debug/ui
MOC_DIR = $$PWD/tmp/debug/moc
OBJECTS_DIR = $$PWD/tmp/debug/obj
RCC_DIR = $$PWD/tmp/debug/rcc
}
INCLUDEPATH += $$PWD/third/libcurl/include
LIBS += -L$$PWD/third/libcurl/libs/x64
LIBS += -llibcurl_imp
RC_FILE += main.rc
HEADERS += \
aesni/aesni-enc-cbc.h \
aesni/aesni-enc-ecb.h \
aesni/aesni-key-exp.h \
aesni/aesni-key-init.h \
allfileslistmodel.h \
completelistmodel.h \
downloadlistmodel.h \
ftpclient.h \
qaesencryption.h \
qftp.h \
qurlinfo.h \
selectpathlistmodel.h \
uploadlistmodel.h