-
Notifications
You must be signed in to change notification settings - Fork 8
/
monkeyLogViewer.pro
91 lines (83 loc) · 2.84 KB
/
monkeyLogViewer.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
#-------------------------------------------------
#
# Project created by QtCreator 2010-11-29T00:11:54
#
#-------------------------------------------------
QT += core widgets network printsupport
CONFIG += c++11
TARGET = monkeyLogViewer
TEMPLATE = app
SOURCES += \
Source/main.cpp \
Source/MainWindow/MainWindow.cpp \
Source/MainWindow/StatusBar.cpp \
Source/MainWindow/MenuBar.cpp \
Source/MainWindow/TabWidget.cpp \
Source/MainWindow/TabBar.cpp \
Source/Setting/INIManager.cpp \
Source/Utils/LoadingWidget.cpp \
Source/FileLoader/FileLoadManager.cpp \
Source/FileLoader/FileReader.cpp \
Source/LogViewer/LogViewerManager.cpp \
Source/LogViewer/LogViewer.cpp \
Source/Option/OptionDialog.cpp \
Source/Option/FontSetupPage.cpp \
Source/Option/HighlightSetupPage.cpp \
Source/Keyword/KeywordHighlighter.cpp \
Source/Keyword/KeywordButtonGroup.cpp \
Source/Keyword/SearchLineEdit.cpp \
Source/MainWindow/AboutDialog.cpp \
Source/MainWindow/RecentFilesMenu.cpp \
Source/MainWindow/GotoLineDialog.cpp \
Source/Http/Http.cpp \
Source/Utils/Updater.cpp \
Source/Utils/ProgressDialog.cpp \
Source/MainWindow/WindowsMenu.cpp \
Source/Keyword/HighlightingResult.cpp \
Source/DockWidget/DockWidget.cpp \
Source/DockWidget/FileBrowser/FileBrowser.cpp \
Source/DockWidget/ResultView/ResultView.cpp \
Source/DockWidget/ChartView/ChartView.cpp \
Source/Keyword/Chart.cpp \
Source/Utils/LoadingPopup.cpp
HEADERS += \
Source/MainWindow/MainWindow.h \
Source/MainWindow/StatusBar.h \
Source/Config.h \
Source/MainWindow/MenuBar.h \
Source/MainWindow/TabWidget.h \
Source/MainWindow/TabBar.h \
Source/Setting/INIManager.h \
Source/Utils/LoadingWidget.h \
Source/FileLoader/FileLoadManager.h \
Source/FileLoader/FileReader.h \
Source/LogViewer/LogViewer.h \
Source/LogViewer/LogViewerManager.h \
Source/Option/OptionDialog.h \
Source/Option/FontSetupPage.h \
Source/Option/HighlightSetupPage.h \
Source/Keyword/KeywordHighlighter.h \
Source/Keyword/KeywordButtonGroup.h \
Source/TypeDef.h \
Source/Keyword/SearchLineEdit.h \
Source/LogViewer/LineNumberArea.h \
Source/MainWindow/AboutDialog.h \
Source/MainWindow/RecentFilesMenu.h \
Source/MainWindow/GotoLineDialog.h \
Source/Http/Http.h \
Source/Utils/Updater.h \
Source/Utils/ProgressDialog.h \
Source/MainWindow/WindowsMenu.h \
Source/Keyword/HighlightingResult.h \
Source/DockWidget/DockWidget.h \
Source/DockWidget/FileBrowser/FileBrowser.h \
Source/DockWidget/ResultView/ResultView.h \
Source/DockWidget/ChartView/ChartView.h \
Source/Keyword/Chart.h \
Source/Utils/LoadingPopup.h
OTHER_FILES += \
README.md
RESOURCES += \
qresource.qrc
RC_FILE = monkeyLogViewer.rc
INCLUDEPATH += .