85 lines
2.1 KiB
Prolog
85 lines
2.1 KiB
Prolog
TEMPLATE = lib
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
CONFIG += c++17
|
|
CONFIG += nokey
|
|
CONFIG += staticlib
|
|
contains(QMAKE_HOST.arch, x86_64):{
|
|
contains(QMAKE_HOST.arch, x86_64):{
|
|
DEFINES += ARCH_X86_64=1
|
|
} else : {
|
|
DEFINES += ARCH_X86=1
|
|
}
|
|
}
|
|
|
|
|
|
win32: {
|
|
DEFINES += _WIN32_WINNT=0x0601
|
|
}
|
|
|
|
gcc {
|
|
QMAKE_CXXFLAGS_RELEASE += -Werror=return-type
|
|
QMAKE_CXXFLAGS_DEBUG += -Werror=return-type
|
|
}
|
|
|
|
msvc {
|
|
DEFINES += NOMINMAX
|
|
}
|
|
|
|
SOURCES += qsynedit/codefolding.cpp \
|
|
qsynedit/constants.cpp \
|
|
qsynedit/document.cpp \
|
|
qsynedit/formatter/cppformatter.cpp \
|
|
qsynedit/formatter/formatter.cpp \
|
|
qsynedit/keystrokes.cpp \
|
|
qsynedit/miscprocs.cpp \
|
|
qsynedit/exporter/exporter.cpp \
|
|
qsynedit/exporter/htmlexporter.cpp \
|
|
qsynedit/exporter/qtsupportedhtmlexporter.cpp \
|
|
qsynedit/exporter/rtfexporter.cpp \
|
|
qsynedit/gutter.cpp \
|
|
qsynedit/painter.cpp \
|
|
qsynedit/qsynedit.cpp \
|
|
qsynedit/searcher/baseseacher.cpp \
|
|
qsynedit/searcher/basicsearcher.cpp \
|
|
qsynedit/searcher/regexsearcher.cpp \
|
|
qsynedit/syntaxer/asm.cpp \
|
|
qsynedit/syntaxer/cpp.cpp \
|
|
qsynedit/syntaxer/glsl.cpp \
|
|
qsynedit/syntaxer/lua.cpp \
|
|
qsynedit/types.cpp \
|
|
qsynedit/syntaxer/makefile.cpp \
|
|
qsynedit/syntaxer/syntaxer.cpp
|
|
|
|
HEADERS += \
|
|
qsynedit/codefolding.h \
|
|
qsynedit/constants.h \
|
|
qsynedit/document.h \
|
|
qsynedit/formatter/cppformatter.h \
|
|
qsynedit/formatter/formatter.h \
|
|
qsynedit/keystrokes.h \
|
|
qsynedit/miscprocs.h \
|
|
qsynedit/types.h \
|
|
qsynedit/exporter/exporter.h \
|
|
qsynedit/exporter/htmlexporter.h \
|
|
qsynedit/exporter/qtsupportedhtmlexporter.h \
|
|
qsynedit/exporter/rtfexporter.h \
|
|
qsynedit/gutter.h \
|
|
qsynedit/painter.h \
|
|
qsynedit/qsynedit.h \
|
|
qsynedit/searcher/baseseacher.h \
|
|
qsynedit/searcher/basicsearcher.h \
|
|
qsynedit/searcher/regexsearcher.h \
|
|
qsynedit/syntaxer/asm.h \
|
|
qsynedit/syntaxer/cpp.h \
|
|
qsynedit/syntaxer/glsl.h \
|
|
qsynedit/syntaxer/lua.h \
|
|
qsynedit/syntaxer/makefile.h \
|
|
qsynedit/syntaxer/syntaxer.h
|
|
|
|
INCLUDEPATH += ../redpanda_qt_utils
|
|
|
|
TRANSLATIONS += \
|
|
qsynedit_zh_CN.ts
|