-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChaosHub.pro
64 lines (55 loc) · 1.51 KB
/
ChaosHub.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
QT += quick quickcontrols2 widgets network multimedia svg xml
CONFIG += c++17
INCLUDEPATH += \
Source \
Source/Masters \
Source/Models \
Source/Records \
Source/TextSp \
Source/Tools \
HEADERS += \
Source/Masters/RecordMaster.h \
Source/Masters/TagMaster.h \
Source/Masters/TextNoteMaster.h \
Source/Models/RecordModel.h \
Source/Models/TagModel.h \
Source/PointersTypedef.h \
Source/Records/AbstractRecord.h \
Source/Records/Category.h \
Source/Records/Record.h \
Source/Records/RecordContent.h \
Source/Records/Tag.h \
Source/Records/TextNote.h \
Source/Storage.h \
Source/TextSp/TextHelper.h \
Source/Tools/Clipboard.h \
Source/Tools/Colors.h \
Source/Tools/Defer.h \
Source/Tools/Tools.h
SOURCES += \
Source/Category.cpp \
Source/Main.cpp \
Source/Masters/RecordMaster.cpp \
Source/Masters/TagMaster.cpp \
Source/Masters/TextNoteMaster.cpp \
Source/Models/RecordModel.cpp \
Source/Models/TagModel.cpp \
Source/Records/AbstractRecord.cpp \
Source/Records/Record.cpp \
Source/Records/RecordContent.cpp \
Source/Records/Tag.cpp \
Source/Records/TextNote.cpp \
Source/Storage.cpp \
Source/TextSp/TextHelper.cpp \
Source/Tools/Clipboard.cpp \
Source/Tools/Colors.cpp \
Source/Tools/Tools.cpp \
RESOURCES += \
Fonts/Fonts.qrc \
Images/Images.qrc \
Qml/Qml.qrc
QML_IMPORT_PATH = $$PWD/qml
include(Libs/sqlite/sqlite.pri)
# lupdate_only {
# SOURCES += qml/*.qml
# }