-
Notifications
You must be signed in to change notification settings - Fork 5
/
qutepart.pro
49 lines (41 loc) · 1.03 KB
/
qutepart.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
TARGET = editor
CONFIG += debug
CONFIG += c++11
CONFIG += qt
QT += widgets
INCLUDEPATH += include
SOURCES = \
editor.cpp \
src/qutepart.cpp \
src/text_block_utils.cpp \
src/indent/indenter.cpp \
src/hl_factory.cpp \
src/hl/context.cpp \
src/hl/language.cpp \
src/hl/loader.cpp \
src/hl/rules.cpp \
src/hl/syntax_highlighter.cpp \
src/hl/style.cpp \
src/hl/context_stack.cpp \
src/hl/context_switcher.cpp \
src/hl/text_block_user_data.cpp \
src/hl/text_to_match.cpp \
src/hl/match_result.cpp \
src/hl/language_db_generated.cpp \
src/hl/language_db.cpp \
HEADERS = \
include/qutepart.h \
include/hl_factory.h \
src/text_block_utils.h \
src/indent/indenter.h \
src/hl/context.h \
src/hl/language.h \
src/hl/rules.h \
src/hl/syntax_highlighter.h \
src/hl/style.h \
src/hl/context_stack.h \
src/hl/context_switcher.h \
src/hl/text_to_match.h \
src/hl/match_result.h \
src/hl/language_db.h \
RESOURCES = syntax-files.qrc