mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 05:49:53 +08:00

Use VStyleParser to read .mdhl style file for markdown highlighting. Signed-off-by: Le Tan <tamlokveer@gmail.com>
60 lines
1.3 KiB
Prolog
60 lines
1.3 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2016-10-01T11:03:59
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core gui webenginewidgets webchannel
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = VNote
|
|
TEMPLATE = app
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
vmainwindow.cpp \
|
|
vdirectorytree.cpp \
|
|
vnote.cpp \
|
|
vnotebook.cpp \
|
|
vnewdirdialog.cpp \
|
|
vconfigmanager.cpp \
|
|
vfilelist.cpp \
|
|
vnewfiledialog.cpp \
|
|
vtabwidget.cpp \
|
|
vedit.cpp \
|
|
veditor.cpp \
|
|
vnotefile.cpp \
|
|
vdocument.cpp \
|
|
utils/vutils.cpp \
|
|
vpreviewpage.cpp \
|
|
utils/peg-highlight/pmh_parser.c \
|
|
hgmarkdownhighlighter.cpp \
|
|
vstyleparser.cpp \
|
|
utils/peg-highlight/pmh_styleparser.c
|
|
|
|
HEADERS += vmainwindow.h \
|
|
vdirectorytree.h \
|
|
vnote.h \
|
|
vnotebook.h \
|
|
vnewdirdialog.h \
|
|
vconfigmanager.h \
|
|
vfilelist.h \
|
|
vnewfiledialog.h \
|
|
vtabwidget.h \
|
|
vedit.h \
|
|
veditor.h \
|
|
vconstants.h \
|
|
vnotefile.h \
|
|
vdocument.h \
|
|
utils/vutils.h \
|
|
vpreviewpage.h \
|
|
utils/peg-highlight/pmh_parser.h \
|
|
hgmarkdownhighlighter.h \
|
|
utils/peg-highlight/pmh_definitions.h \
|
|
vstyleparser.h \
|
|
utils/peg-highlight/pmh_styleparser.h
|
|
|
|
RESOURCES += \
|
|
vnote.qrc
|