2022-11-17 08:26:05 +00:00
|
|
|
QT -= gui
|
|
|
|
|
|
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += LIBPARSE_LIBRARY
|
|
|
|
|
|
|
|
CONFIG += c++11
|
|
|
|
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
LexFoundation.cpp \
|
|
|
|
ParseFrame.cpp \
|
|
|
|
StoryBoardDocumentParser.cpp \
|
|
|
|
StoryChainDocumentParser.cpp \
|
|
|
|
StoryOutlineDocumentParser.cpp \
|
|
|
|
StoryTool.cpp \
|
|
|
|
StoryUnitDocumentParser.cpp \
|
|
|
|
WordsPeak.cpp \
|
|
|
|
XSyntaxBase.cpp \
|
2022-11-25 01:18:54 +00:00
|
|
|
libParse.cpp \
|
2022-12-08 19:43:42 +00:00
|
|
|
parsechecks.cpp \
|
2022-11-25 01:18:54 +00:00
|
|
|
storyconceptdocumentparser.cpp
|
2022-11-17 08:26:05 +00:00
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
ComnDef.h \
|
|
|
|
LexFoundation.h \
|
|
|
|
ParseFrame.h \
|
|
|
|
StoryBoardDocumentParser.h \
|
|
|
|
StoryChainDocumentParser.h \
|
|
|
|
StoryOutlineDocumentParser.h \
|
|
|
|
StoryTool.h \
|
|
|
|
StoryUnitDocumentParser.h \
|
|
|
|
SyntaxBase.h \
|
|
|
|
WordsPeak.h \
|
|
|
|
XSyntaxBase.h \
|
|
|
|
libParse.h \
|
2022-11-25 01:18:54 +00:00
|
|
|
libParse_global.h \
|
2022-12-08 19:43:42 +00:00
|
|
|
parsechecks.h \
|
2022-11-25 01:18:54 +00:00
|
|
|
storyconceptdocumentparser.h
|
2022-11-17 08:26:05 +00:00
|
|
|
|
|
|
|
TRANSLATIONS += \
|
|
|
|
libParse_zh_CN.ts
|
|
|
|
|
2023-01-01 05:10:31 +00:00
|
|
|
|
|
|
|
|
2022-11-17 08:26:05 +00:00
|
|
|
# Default rules for deployment.
|
|
|
|
unix {
|
|
|
|
target.path = /usr/lib
|
|
|
|
}
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|