-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpsyncgui.pro
More file actions
113 lines (99 loc) · 2.43 KB
/
psyncgui.pro
File metadata and controls
113 lines (99 loc) · 2.43 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#-------------------------------------------------
#
# Project created by QtCreator 2014-02-24T15:45:58
#
#-------------------------------------------------
QT += core gui
QT +=network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = psyncgui
TEMPLATE = app
target.path = /usr/bin
INSTALLS += target
VERSION = 3.1.1
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
DEFINES += DEBUG_LEVEL=D_ERROR
DEFINES += P_OS_WINDOWS
DEFINES += _FILE_OFFSET_BITS=64
DEFINES +=VFS
SOURCES += main.cpp\
loginwindow.cpp \
registerwindow.cpp \
pcloudapp.cpp \
addsyncdialog.cpp \
changepassdialog.cpp \
modifysyncdialog.cpp \
pcloudwindow.cpp \
psettings.cpp \
syncpage.cpp \
mylogger.cpp \
shellextthread.cpp\
settingspage.cpp \
versiontimerthread.cpp \
suggestnsbasewin.cpp \
welcomewin.cpp \
versiondwnldthread.cpp \
sharespage.cpp \
sharefolderwindow.cpp \
changepermissionsdialog.cpp \
remotetreesdialog.cpp \
acceptsharedialog.cpp \
infoscreenswin.cpp \
cryptokeydialog.cpp \
cryptopage.cpp \
notificationsmanager.cpp \
notifydelegate.cpp
HEADERS += loginwindow.h \
registerwindow.h \
pcloudapp.h \
addsyncdialog.h \
changepassdialog.h \
modifysyncdialog.h \
pcloudwindow.h \
psettings.h \
syncpage.h \
common.h\
mylogger.h \
shellextthread.h \
settingspage.h \
versiontimerthread.h \
suggestnsbasewin.h \
welcomewin.h \
versiondwnldthread.h \
sharespage.h \
sharefolderwindow.h \
changepermissionsdialog.h \
remotetreesdialog.h \
acceptsharedialog.h \
infoscreenswin.h \
cryptokeydialog.h \
cryptopage.h \
notificationsmanager.h \
notifydelegate.h
FORMS += loginwindow.ui \
registerwindow.ui \
addsyncdialog.ui \
changepassdialog.ui \
modifysyncdialog.ui \
pcloudwindow.ui \
suggestnsbasewin.ui \
sharefolderwindow.ui \
changepermissionsdialog.ui \
remotetreesdialog.ui \
infoscreenswin.ui \
cryptokeydialog.ui
win32:RC_FILE= pCloud.rc
RESOURCES += \
Resources.qrc
win32{
LIBS += -L$$PWD/../.. -lpsync -lcbfs
LIBS += -lssl -lcrypto -lsqlite -liphlpapi
LIBS += -lversion -lsetupapi -lnetapi32
INCLUDEPATH += $$PWD/../.. $$PWD/../../pclsync -LC:/Windows/System32/
}
unix{
LIBS += -lssl -lcrypto -lsqlite3 -lfuse
LIBS += $$PWD/../../sync/pclsync/psynclib.a
INCLUDEPATH += $$PWD/../../sync/pclsync
}
QMAKE_CXXFLAGS += -g