vnote/src/src.pro
Le Tan 047c26b598 support pasting image in markdown
Signed-off-by: Le Tan <tamlokveer@gmail.com>
2016-10-31 22:43:59 +08:00

83 lines
2.1 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 \
dialog/vnewdirdialog.cpp \
vconfigmanager.cpp \
vfilelist.cpp \
dialog/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 \
dialog/vnewnotebookdialog.cpp \
vmarkdownconverter.cpp \
dialog/vnotebookinfodialog.cpp \
dialog/vdirinfodialog.cpp \
dialog/vfileinfodialog.cpp \
veditoperations.cpp \
vmdeditoperations.cpp \
dialog/vinsertimagedialog.cpp
HEADERS += vmainwindow.h \
vdirectorytree.h \
vnote.h \
vnotebook.h \
dialog/vnewdirdialog.h \
vconfigmanager.h \
vfilelist.h \
dialog/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 \
dialog/vnewnotebookdialog.h \
vmarkdownconverter.h \
dialog/vnotebookinfodialog.h \
dialog/vdirinfodialog.h \
dialog/vfileinfodialog.h \
veditoperations.h \
vmdeditoperations.h \
dialog/vinsertimagedialog.h
RESOURCES += \
vnote.qrc
win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../hoedown/release/ -lhoedown
else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../hoedown/debug/ -lhoedown
else:unix: LIBS += -L$$OUT_PWD/../hoedown/ -lhoedown
INCLUDEPATH += $$PWD/../hoedown
DEPENDPATH += $$PWD/../hoedown