mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00

* add task system code * enable ci build * Revert "enable ci build" This reverts commit 8c457a22e44e64c7d87804fc3c76ee778c1c3b6f.
82 lines
2.0 KiB
Plaintext
82 lines
2.0 KiB
Plaintext
INCLUDEPATH *= $$PWD
|
|
|
|
include($$PWD/notebookbackend/notebookbackend.pri)
|
|
|
|
include($$PWD/versioncontroller/versioncontroller.pri)
|
|
|
|
include($$PWD/notebookconfigmgr/notebookconfigmgr.pri)
|
|
|
|
include($$PWD/notebook/notebook.pri)
|
|
|
|
include($$PWD/buffer/buffer.pri)
|
|
|
|
SOURCES += \
|
|
$$PWD/buffermgr.cpp \
|
|
$$PWD/configmgr.cpp \
|
|
$$PWD/coreconfig.cpp \
|
|
$$PWD/editorconfig.cpp \
|
|
$$PWD/externalfile.cpp \
|
|
$$PWD/file.cpp \
|
|
$$PWD/historyitem.cpp \
|
|
$$PWD/historymgr.cpp \
|
|
$$PWD/htmltemplatehelper.cpp \
|
|
$$PWD/logger.cpp \
|
|
$$PWD/mainconfig.cpp \
|
|
$$PWD/markdowneditorconfig.cpp \
|
|
$$PWD/quickaccesshelper.cpp \
|
|
$$PWD/singleinstanceguard.cpp \
|
|
$$PWD/templatemgr.cpp \
|
|
$$PWD/texteditorconfig.cpp \
|
|
$$PWD/vnotex.cpp \
|
|
$$PWD/thememgr.cpp \
|
|
$$PWD/task.cpp \
|
|
$$PWD/taskhelper.cpp \
|
|
$$PWD/taskmgr.cpp \
|
|
$$PWD/taskvariablemgr.cpp \
|
|
$$PWD/shellexecution.cpp \
|
|
$$PWD/notebookmgr.cpp \
|
|
$$PWD/theme.cpp \
|
|
$$PWD/sessionconfig.cpp \
|
|
$$PWD/clipboarddata.cpp \
|
|
$$PWD/widgetconfig.cpp
|
|
|
|
HEADERS += \
|
|
$$PWD/buffermgr.h \
|
|
$$PWD/configmgr.h \
|
|
$$PWD/coreconfig.h \
|
|
$$PWD/editorconfig.h \
|
|
$$PWD/events.h \
|
|
$$PWD/externalfile.h \
|
|
$$PWD/file.h \
|
|
$$PWD/filelocator.h \
|
|
$$PWD/fileopenparameters.h \
|
|
$$PWD/historyitem.h \
|
|
$$PWD/historymgr.h \
|
|
$$PWD/htmltemplatehelper.h \
|
|
$$PWD/location.h \
|
|
$$PWD/logger.h \
|
|
$$PWD/mainconfig.h \
|
|
$$PWD/markdowneditorconfig.h \
|
|
$$PWD/noncopyable.h \
|
|
$$PWD/quickaccesshelper.h \
|
|
$$PWD/singleinstanceguard.h \
|
|
$$PWD/iconfig.h \
|
|
$$PWD/templatemgr.h \
|
|
$$PWD/texteditorconfig.h \
|
|
$$PWD/vnotex.h \
|
|
$$PWD/thememgr.h \
|
|
$$PWD/task.h \
|
|
$$PWD/taskhelper.h \
|
|
$$PWD/taskmgr.h \
|
|
$$PWD/taskvariablemgr.h \
|
|
$$PWD/shellexecution.h \
|
|
$$PWD/global.h \
|
|
$$PWD/namebasedserver.h \
|
|
$$PWD/exception.h \
|
|
$$PWD/notebookmgr.h \
|
|
$$PWD/theme.h \
|
|
$$PWD/sessionconfig.h \
|
|
$$PWD/clipboarddata.h \
|
|
$$PWD/webresource.h \
|
|
$$PWD/widgetconfig.h
|