2022-09-25 16:07:52 +08:00
|
|
|
TEMPLATE = lib
|
|
|
|
QT += core gui
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
|
|
|
|
CONFIG += c++17
|
|
|
|
CONFIG += nokey
|
2022-09-26 15:20:13 +08:00
|
|
|
CONFIG += staticlib
|
2022-09-25 16:07:52 +08:00
|
|
|
|
|
|
|
win32: {
|
|
|
|
DEFINES += _WIN32_WINNT=0x0601
|
|
|
|
}
|
|
|
|
|
|
|
|
gcc {
|
|
|
|
QMAKE_CXXFLAGS_RELEASE += -Werror=return-type
|
|
|
|
QMAKE_CXXFLAGS_DEBUG += -Werror=return-type
|
|
|
|
}
|
|
|
|
|
|
|
|
msvc {
|
|
|
|
DEFINES += NOMINMAX
|
|
|
|
}
|
|
|
|
|
2022-09-26 11:18:43 +08:00
|
|
|
SOURCES += qsynedit/CodeFolding.cpp \
|
|
|
|
qsynedit/Constants.cpp \
|
|
|
|
qsynedit/KeyStrokes.cpp \
|
|
|
|
qsynedit/MiscClasses.cpp \
|
|
|
|
qsynedit/MiscProcs.cpp \
|
|
|
|
qsynedit/SynEdit.cpp \
|
|
|
|
qsynedit/TextBuffer.cpp \
|
|
|
|
qsynedit/TextPainter.cpp \
|
2023-01-06 11:41:04 +08:00
|
|
|
qsynedit/exporter/exporter.cpp \
|
|
|
|
qsynedit/exporter/htmlexporter.cpp \
|
|
|
|
qsynedit/exporter/qtsupportedhtmlexporter.cpp \
|
|
|
|
qsynedit/exporter/rtfexporter.cpp \
|
2022-12-10 21:23:49 +08:00
|
|
|
qsynedit/syntaxer/asm.cpp \
|
|
|
|
qsynedit/syntaxer/cpp.cpp \
|
|
|
|
qsynedit/syntaxer/customhighlighterv1.cpp \
|
|
|
|
qsynedit/syntaxer/glsl.cpp \
|
2022-09-26 11:18:43 +08:00
|
|
|
qsynedit/Search.cpp \
|
|
|
|
qsynedit/SearchBase.cpp \
|
|
|
|
qsynedit/SearchRegex.cpp \
|
2022-12-06 22:51:59 +08:00
|
|
|
qsynedit/Types.cpp \
|
2022-12-10 21:23:49 +08:00
|
|
|
qsynedit/syntaxer/makefile.cpp \
|
|
|
|
qsynedit/syntaxer/syntaxer.cpp
|
2022-09-25 16:07:52 +08:00
|
|
|
|
2022-09-26 11:18:43 +08:00
|
|
|
HEADERS += qsynedit/Search.h \
|
|
|
|
qsynedit/SearchBase.h \
|
|
|
|
qsynedit/SearchRegex.h \
|
|
|
|
qsynedit/CodeFolding.h \
|
|
|
|
qsynedit/Constants.h \
|
|
|
|
qsynedit/KeyStrokes.h \
|
|
|
|
qsynedit/MiscClasses.h \
|
|
|
|
qsynedit/MiscProcs.h \
|
|
|
|
qsynedit/SynEdit.h \
|
|
|
|
qsynedit/TextBuffer.h \
|
|
|
|
qsynedit/TextPainter.h \
|
|
|
|
qsynedit/Types.h \
|
2023-01-06 11:41:04 +08:00
|
|
|
qsynedit/exporter/exporter.h \
|
|
|
|
qsynedit/exporter/htmlexporter.h \
|
|
|
|
qsynedit/exporter/qtsupportedhtmlexporter.h \
|
|
|
|
qsynedit/exporter/rtfexporter.h \
|
2022-12-10 21:23:49 +08:00
|
|
|
qsynedit/syntaxer/asm.h \
|
|
|
|
qsynedit/syntaxer/cpp.h \
|
|
|
|
qsynedit/syntaxer/customhighlighterv1.h \
|
|
|
|
qsynedit/syntaxer/glsl.h \
|
|
|
|
qsynedit/syntaxer/makefile.h \
|
|
|
|
qsynedit/syntaxer/syntaxer.h
|
2022-09-25 17:43:31 +08:00
|
|
|
|
|
|
|
INCLUDEPATH += ../redpanda_qt_utils
|