-
Notifications
You must be signed in to change notification settings - Fork 2
/
VibratoNotes-Desktop.pro
145 lines (130 loc) · 5.05 KB
/
VibratoNotes-Desktop.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
133
134
135
136
137
138
139
140
141
142
143
144
145
#-------------------------------------------------
#
# Project created by QtCreator 2018-09-19T15:41:41
#
#-------------------------------------------------
QT += core gui widgets sql
TARGET = vibrato
TEMPLATE = app
LIBS += -lsodium
LIBS += -lchicken
# 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
VIBRATO_ENTRY_POINT=$$PWD/src/main.cpp
SOURCES += \
$$VIBRATO_ENTRY_POINT \
$$PWD/src/meta/info/appconfig.cpp \
$$PWD/src/mainwindow.cpp \
$$PWD/src/userwindow.cpp \
$$PWD/src/ui-managers/notelistmanager.cpp \
$$PWD/src/meta/note.cpp \
$$PWD/src/meta/notebook.cpp \
$$PWD/src/meta/tag.cpp \
$$PWD/src/meta/db/notedatabase.cpp \
$$PWD/src/meta/db/notebookdatabase.cpp \
$$PWD/src/meta/db/tagdatabase.cpp \
$$PWD/src/models/treemodel.cpp \
$$PWD/src/models/items/basictreeitem.cpp \
$$PWD/src/ui-managers/manager.cpp \
$$PWD/src/ui-managers/treemanager.cpp \
$$PWD/src/ui-managers/escribamanager.cpp \
$$PWD/src/meta/db/database.cpp \
$$PWD/src/models/items/notelistitem.cpp \
$$PWD/src/models/notelistmodel.cpp \
$$PWD/src/models/views/customlistview.cpp \
$$PWD/ui/note_editnotebook.cpp \
$$PWD/src/models/items/treeitemwithid.cpp \
$$PWD/src/iconutils.cpp \
$$PWD/ui/note_edittags.cpp \
$$PWD/src/models/items/listitemwithid.cpp \
$$PWD/src/models/sortfilter/notelistproxymodel.cpp \
$$PWD/ui/edittags.cpp \
$$PWD/src/models/views/customtreeview.cpp \
$$PWD/ui/trashitem.cpp \
$$PWD/src/ui-managers/notelist-views/trashview.cpp \
$$PWD/src/ui-managers/notelist-views/genericview.cpp \
$$PWD/ui/notebook_editparent.cpp \
$$PWD/src/sql/sqlmanager.cpp \
$$PWD/src/models/delegates/noteitemdelegate.cpp \
$$PWD/src/custom-components/customlineedit.cpp \
$$PWD/src/cloud/cloudmanager.cpp \
$$PWD/src/crypto/vcrypto.cpp \
$$PWD/src/crypto/vibrato-crypto-utils/vibrato-crypto.c \
$$PWD/src/scripting-api/scriptingengine.cpp
HEADERS += \
$$PWD/src/meta/info/appconfig.h \
$$PWD/src/meta/info/appinfo.h \
$$PWD/src/mainwindow.h \
$$PWD/src/userwindow.h \
$$PWD/src/ui-managers/notelistmanager.h \
$$PWD/src/meta/note.h \
$$PWD/src/meta/notebook.h \
$$PWD/src/meta/tag.h \
$$PWD/src/meta/db/notedatabase.h \
$$PWD/src/meta/db/notebookdatabase.h \
$$PWD/src/meta/db/tagdatabase.h \
$$PWD/include/helper-io.hpp \
$$PWD/src/models/treemodel.h \
$$PWD/src/models/items/basictreeitem.h \
$$PWD/src/ui-managers/manager.h \
$$PWD/src/ui-managers/treemanager.h \
$$PWD/src/ui-managers/escribamanager.h \
$$PWD/src/meta/db/database.h \
$$PWD/src/models/items/notelistitem.h \
$$PWD/src/models/notelistmodel.h \
$$PWD/src/models/views/customlistview.h \
$$PWD/ui/note_editnotebook.h \
$$PWD/src/models/items/treeitemwithid.h \
$$PWD/src/iconutils.h \
$$PWD/include/helper-io.hpp \
$$PWD/ui/note_edittags.h \
$$PWD/src/models/items/listitemwithid.h \
$$PWD/src/models/sortfilter/notelistproxymodel.h \
$$PWD/ui/edittags.h \
$$PWD/src/models/views/customtreeview.h \
$$PWD/ui/trashitem.h \
$$PWD/src/ui-managers/notelist-views/trashview.h \
$$PWD/src/ui-managers/notelist-views/genericview.h \
$$PWD/ui/notebook_editparent.h \
$$PWD/src/sql/sqlmanager.h \
$$PWD/src/models/delegates/noteitemdelegate.h \
$$PWD/src/custom-components/customlineedit.h \
$$PWD/src/cloud/cloudmanager.h \
$$PWD/src/crypto/vcrypto.h \
$$PWD/src/crypto/vibrato-crypto-utils/vibrato-crypto.h \
$$PWD/src/scripting-api/scriptingengine.h
INCLUDEPATH += $$PWD/include
INCLUDEPATH += $$PWD/src/models/views # Location of customlistview
FORMS += \
$$PWD/ui/mainwindow.ui \
$$PWD/ui/userwindow.ui \
$$PWD/ui/notelistitem.ui \
$$PWD/ui/escribaaddons.ui \
$$PWD/ui/tagitem.ui \
$$PWD/ui/note_editnotebook.ui \
$$PWD/ui/note_edittags.ui \
$$PWD/ui/notelist_addons.ui \
$$PWD/ui/edittags.ui \
$$PWD/ui/trashitem.ui \
$$PWD/ui/notebook_editparent.ui
include($$PWD/src/text-editor/Escriba.pro)
include($$PWD/src/cloud/api/Qt-Vibrato-Cloud-API-Library.pro)
RESOURCES += \
$$PWD/resources/dummy-data.qrc \
$$PWD/resources/icons.qrc \
$$PWD/resources/fonts.qrc \
$$PWD/resources/qdarkstyle.qrc \
$$PWD/resources/sqlfiles.qrc \
$$PWD/resources/tutorial.qrc
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target