-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeltaNote_client_window.pro
133 lines (116 loc) · 5.04 KB
/
deltaNote_client_window.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#-------------------------------------------------
#
# Project created by QtCreator 2019-11-18T19:11:49
#
#-------------------------------------------------
QT += core gui svgwidgets xml core5compat
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network
TARGET = deltaNote
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
CONFIG += c++11
SOURCES += \
client/utils/c_inter_var.cpp \
client/ui/main/mainwindow.cpp \
client/ui/main/todo_detail.cpp \
client/ui/main/todolistwidget.cpp \
client/ui/main/todolistitem.cpp \
client/ui/setting/login.cpp \
client/ui/setting/choosecolor.cpp \
client/ui/setting/newuser.cpp \
client/ui/info/notify.cpp \
client/ui/utils/svg_color.cpp \
utils/inter_var.cpp \
sqlite/sql_base.cpp \
sqlite/sql_key_value.cpp \
sqlite/sql_todo_list.cpp \
http/http.cpp \
client/logic/setting_ctrl.cpp \
client/logic/c_data_ctrl.cpp \
client/logic/c_sync_data.cpp \
client/logic/reminder.cpp \
client/logic/main.cpp
HEADERS += \
client/utils/c_language.h \
client/utils/c_inter_var.h \
client/ui/main/mainwindow.h \
client/ui/main/todo_detail.h \
client/ui/main/todolistwidget.h \
client/ui/main/todolistitem.h \
client/ui/setting/login.h \
client/ui/setting/choosecolor.h \
client/ui/setting/newuser.h \
client/ui/info/notify.h \
client/ui/utils/svg_color.h \
utils/inter_var.h \
sqlite/sql_base.h \
sqlite/sql_key_value.h \
sqlite/sql_todo_list.h \
http/http.h \
client/logic/setting_ctrl.h \
client/logic/c_data_ctrl.h \
client/logic/reminder.h \
client/logic/c_sync_data.h
INCLUDEPATH += \
$$PWD/log \
$$PWD/utils \
$$PWD/sqlite \
$$PWD/http \
$$PWD/client/utils \
$$PWD/client/logic \
$$PWD/client/ui/main \
$$PWD/client/ui/setting \
$$PWD/client/ui/info \
$$PWD/client/ui/utils
FORMS += \
client/ui/main/mainwindow.ui \
client/ui/main/todo_detail.ui \
client/ui/main/todolistitem.ui \
client/ui/setting/login.ui \
client/ui/setting/newuser.ui \
client/ui/setting/choosecolor.ui \
client/ui/info/notify.ui
UI_DIR = \
client/ui/main/ \
client/ui/setting/ \
client/ui/info/
RESOURCES += \
client/ui/icon.qrc
RC_ICONS = client/ui/deltaNote.ico
DISTFILES +=
### 3rdparty
# sqlite3
INCLUDEPATH += $$PWD/3rdparty/sqlite/include
LIBS += -L$$PWD/3rdparty/sqlite/bin/ -lsqlite3
# dlog
INCLUDEPATH += $$PWD/3rdparty/dlog/include
LIBS += -L$$PWD/3rdparty/dlog/bin -ldlog
# jsoncpp
INCLUDEPATH += $$PWD/3rdparty/jsoncpp/include
LIBS += -L$$PWD/3rdparty/jsoncpp/bin -ljsoncpp
# base64
INCLUDEPATH += $$PWD/3rdparty/base64/include
LIBS += -L$$PWD/3rdparty/base64/bin -lbase64
# aes_encryption
INCLUDEPATH += $$PWD/3rdparty/aes_encryption/include
LIBS += -L$$PWD/3rdparty/aes_encryption/bin -laes_encryption
# cryptopp860
INCLUDEPATH += $$PWD/3rdparty/cryptopp860/include
LIBS += -L$$PWD/3rdparty/cryptopp860/bin -lcryptopp
# HTTP lib
INCLUDEPATH += $$PWD/3rdparty/httplib/include
LIBS += -lws2_32
DEFINES += WINDOW_CLIENT
DEFINES += WINDOW_BUILD
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target