-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEasyNote.pro
69 lines (55 loc) · 1.42 KB
/
EasyNote.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
#-------------------------------------------------
#
# Project created by QtCreator 2021-09-18T18:56:18
#
#-------------------------------------------------
QT += core gui
QT += webenginewidgets
QT += sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = EasyNote
TEMPLATE = app
DESTDIR = bin
CONFIG += resources_big
unix:UI_DIR = ../tmp/ui
win32:UI_DIR = tmp/ui
#CONFIG(release, debug|release){
# DEFINES += QT_NO_WARNING_OUTPUT QT_NO_DEBUG_OUTPUT
#}
win32:QMAKE_LFLAGS_WINDOWS += /LARGEADDRESSAWARE
INCLUDEPATH += include
SOURCES += source/main.cpp\
source/datamgr.cpp \
source/mainwnd.cpp \
source/notelistpane.cpp \
source/noteviewpane.cpp \
source/noteitem.cpp \
source/about.cpp \
source/navpane.cpp \
source/addfolder.cpp \
source/popconfirm.cpp \
source/login.cpp \
source/setpwddlg.cpp \
source/messagebox.cpp \
source/unlocktool.cpp
HEADERS += include/mainwnd.h \
include/datamgr.h \
include/notelistpane.h \
include/noteviewpane.h \
include/global.h \
include/noteitem.h \
include/about.h \
include/navpane.h \
include/addfolder.h \
include/popconfirm.h \
include/login.h \
include/setpwddlg.h \
include/messagebox.h \
include/unlocktool.h
unix|win32: LIBS += -L$$PWD/lib/ -lBasicSdk
INCLUDEPATH += $$PWD/lib/
DEPENDPATH += $$PWD/lib/
RESOURCES += \
res/res.qrc
RC_FILE += \
res/icon.rc