-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathmymind.pro
More file actions
111 lines (98 loc) · 3.32 KB
/
mymind.pro
File metadata and controls
111 lines (98 loc) · 3.32 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
QT += core gui sql
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
# The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked 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 it uses 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
SOURCES += \
src/aboutdialog.cpp \
src/api/capture/capturewindow.cpp \
src/api/color/colortable.cpp \
src/api/controls/base/widgethelper.cpp \
src/api/controls/colorwidget.cpp \
src/api/controls/pixmapviewer.cpp \
src/api/controls/showpixmapdialog.cpp \
src/api/file/fileseacher.cpp \
src/api/ocr/ocrapi.cpp \
src/api/sql/sqldef.cpp \
src/api/sql/sqlitewrapper.cpp \
src/editcolordialog.cpp \
src/editlinkdialog.cpp \
src/editmarknodedialog.cpp \
src/editnodedialog.cpp \
src/editremarkdialog.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/mindmapobject.cpp \
src/mindmapwidget.cpp \
src/mindmapwidgettoolbar.cpp \
src/mydao.cpp \
src/openprojectdialog.cpp \
src/openrecentdialog.cpp \
src/searchandreplacedialog.cpp \
src/setbackgrounddialog.cpp \
src/showmindlineoutdialog.cpp
HEADERS += \
src/aboutdialog.h \
src/api/capture/capturewindow.h \
src/api/color/colortable.h \
src/api/controls/base/widgethelper.h \
src/api/controls/colorwidget.h \
src/api/controls/pixmapviewer.h \
src/api/controls/showpixmapdialog.h \
src/api/file/fileseacher.h \
src/api/ocr/ocrapi.h \
src/api/sql/sqldef.h \
src/api/sql/sqlitewrapper.h \
src/editcolordialog.h \
src/editlinkdialog.h \
src/editmarknodedialog.h \
src/editnodedialog.h \
src/editremarkdialog.h \
src/mainwindow.h \
src/mindmapobject.h \
src/mindmapwidget.h \
src/mindmapwidgettoolbar.h \
src/mydao.h \
src/openprojectdialog.h \
src/openrecentdialog.h \
src/searchandreplacedialog.h \
src/setbackgrounddialog.h \
src/showmindlineoutdialog.h
FORMS += \
src/aboutdialog.ui \
src/api/capture/capturewindow.ui \
src/api/controls/colorwidget.ui \
src/api/controls/pixmapviewer.ui \
src/api/controls/showpixmapdialog.ui \
src/editcolordialog.ui \
src/editlinkdialog.ui \
src/editmarknodedialog.ui \
src/editnodedialog.ui \
src/editremarkdialog.ui \
src/mainwindow.ui \
src/mindmapwidget.ui \
src/mindmapwidgettoolbar.ui \
src/openprojectdialog.ui \
src/openrecentdialog.ui \
src/searchandreplacedialog.ui \
src/setbackgrounddialog.ui \
src/showmindlineoutdialog.ui
include ($$PWD/src/api/ocrlib/ocrlib.pri)
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
DESTDIR=$$PWD/bin
RC_ICONS=app.ico
RESOURCES += \
app.qrc
DISTFILES += \
android_resourcecs/AndroidManifest.xml
ANDROID_PACKAGE_SOURCE_DIR=$$PWD/android_resourcecs