2023-03-20 13:19:46 +00:00
|
|
|
QT += gui
|
2022-11-17 08:26:05 +00:00
|
|
|
|
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
DEFINES += LIBPARSE_LIBRARY
|
|
|
|
|
|
|
|
|
|
CONFIG += c++11
|
2023-02-25 07:20:07 +00:00
|
|
|
CONFIG += exceptions
|
2022-11-17 08:26:05 +00:00
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
2023-02-25 07:20:07 +00:00
|
|
|
msvc{
|
|
|
|
|
QMAKE_CXXFLAGS += /utf-8
|
|
|
|
|
QMAKE_CFLAGS += /utf-8
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-17 08:26:05 +00:00
|
|
|
SOURCES += \
|
2023-08-11 15:06:51 +00:00
|
|
|
# ParseFrame.cpp \
|
|
|
|
|
# StoryBoardDocumentParser.cpp \
|
|
|
|
|
# StoryChainDocumentParser.cpp \
|
|
|
|
|
# StoryOutlineDocumentParser.cpp \
|
|
|
|
|
# StoryTool.cpp \
|
|
|
|
|
# StoryUnitDocumentParser.cpp \
|
|
|
|
|
# XSyntaxBase.cpp \
|
|
|
|
|
ast_foundation.cpp \
|
2023-03-25 02:10:32 +00:00
|
|
|
lex_foundation.cpp \
|
2023-08-11 15:06:51 +00:00
|
|
|
# libParse.cpp \
|
|
|
|
|
# parsechecks.cpp \
|
|
|
|
|
node_impls.cpp \
|
|
|
|
|
parser_foundation.cpp \
|
|
|
|
|
# storyconceptdocumentparser.cpp \
|
|
|
|
|
syntax_foundation.cpp \
|
|
|
|
|
token_impls.cpp
|
2022-11-17 08:26:05 +00:00
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
ComnDef.h \
|
2023-08-11 15:06:51 +00:00
|
|
|
# ParseFrame.h \
|
|
|
|
|
# StoryBoardDocumentParser.h \
|
|
|
|
|
# StoryChainDocumentParser.h \
|
|
|
|
|
# StoryOutlineDocumentParser.h \
|
|
|
|
|
# StoryTool.h \
|
|
|
|
|
# StoryUnitDocumentParser.h \
|
|
|
|
|
# SyntaxBase.h \
|
|
|
|
|
# XSyntaxBase.h \
|
|
|
|
|
ast_foundation.h \
|
2023-03-25 02:10:32 +00:00
|
|
|
lex_foundation.h \
|
2023-08-11 15:06:51 +00:00
|
|
|
# libParse.h \
|
2022-11-25 01:18:54 +00:00
|
|
|
libParse_global.h \
|
2023-08-11 15:06:51 +00:00
|
|
|
# parsechecks.h \
|
|
|
|
|
node_impls.h \
|
|
|
|
|
parser_foundation.h \
|
|
|
|
|
# storyconceptdocumentparser.h \
|
|
|
|
|
syntax_foundation.h \
|
|
|
|
|
token_impls.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
|