QtNovelUI/libParse/libParse.pro

58 lines
1.2 KiB
Prolog
Raw Normal View History

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 += \
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