Christian Grasser b06678d738 Update to Scintilla 5.5.8 & Lexilla 5.4.6
Scintilla Release 5.5.8 (https://www.scintilla.org/scintilla558.zip)

    Released 10 November 2025.
    Change format for SCI_GETSELECTIONSERIALIZED. Feature #1563.
    Ensure selection drawn correctly when selection restored by undo. Bug #2487.
    Update to Unicode 16. Feature #1569.
    Fix bug when indenting rectangular selection. Feature #1567.
    Add PTRDIFF_DOESNT_ALIAS_INT preprocessor choice.
    On Win32, force autocompletion list colours to be opaque. Enlarge bitmap to avoid visible blank background between items. Bug #2482.
    On Cocoa, fix crash with bidirectional mode when scrolled before start of document.
    On Cocoa, use same default calltip colours as other platforms for consistency. Bug #2486.

Lexilla Release 5.4.6 (https://www.scintilla.org/lexilla546.zip)

    Released 10 November 2025.
    Lexer added for SINEX "sinex". Pull request #329.
    Update character categories to Unicode 16. Feature #1569.
    Errorlist: Allow "bright" ANSI sequences (ESC[90m - ESC[97m). Pull request #332.
    Progress: Treat '.' as part of compound identifiers instead of as an operator between identifiers. Pull request #316.
    Python: Support t-strings t\"var={var}\" added by Python 3.14. Pull request #328.

Close #17191
2025-11-23 21:09:16 +01:00

108 lines
2.8 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2011-05-05T12:41:23
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
equals(QT_MAJOR_VERSION, 6): QT += core5compat
TARGET = ScintillaEditBase
TEMPLATE = lib
CONFIG += lib_bundle
CONFIG += c++1z
VERSION = 5.5.8
SOURCES += \
PlatQt.cpp \
ScintillaQt.cpp \
ScintillaEditBase.cpp \
../../src/XPM.cxx \
../../src/ViewStyle.cxx \
../../src/UniqueString.cxx \
../../src/UniConversion.cxx \
../../src/UndoHistory.cxx \
../../src/Style.cxx \
../../src/Selection.cxx \
../../src/ScintillaBase.cxx \
../../src/RunStyles.cxx \
../../src/RESearch.cxx \
../../src/PositionCache.cxx \
../../src/PerLine.cxx \
../../src/MarginView.cxx \
../../src/LineMarker.cxx \
../../src/KeyMap.cxx \
../../src/Indicator.cxx \
../../src/Geometry.cxx \
../../src/EditView.cxx \
../../src/Editor.cxx \
../../src/EditModel.cxx \
../../src/Document.cxx \
../../src/Decoration.cxx \
../../src/DBCS.cxx \
../../src/ContractionState.cxx \
../../src/CharClassify.cxx \
../../src/CharacterType.cxx \
../../src/CharacterCategoryMap.cxx \
../../src/ChangeHistory.cxx \
../../src/CellBuffer.cxx \
../../src/CaseFolder.cxx \
../../src/CaseConvert.cxx \
../../src/CallTip.cxx \
../../src/AutoComplete.cxx
HEADERS += \
PlatQt.h \
ScintillaQt.h \
ScintillaEditBase.h \
../../src/XPM.h \
../../src/ViewStyle.h \
../../src/UndoHistory.h \
../../src/UniConversion.h \
../../src/Style.h \
../../src/SplitVector.h \
../../src/Selection.h \
../../src/ScintillaBase.h \
../../src/RunStyles.h \
../../src/RESearch.h \
../../src/PositionCache.h \
../../src/Platform.h \
../../src/PerLine.h \
../../src/Partitioning.h \
../../src/LineMarker.h \
../../src/KeyMap.h \
../../src/Indicator.h \
../../src/Geometry.h \
../../src/Editor.h \
../../src/Document.h \
../../src/Decoration.h \
../../src/ContractionState.h \
../../src/CharClassify.h \
../../src/CharacterType.h \
../../src/CharacterCategoryMap.h \
../../src/ChangeHistory.h \
../../src/CellBuffer.h \
../../src/CaseFolder.h \
../../src/CaseConvert.h \
../../src/CallTip.h \
../../src/AutoComplete.h \
../../include/Scintilla.h \
../../include/ILexer.h
OTHER_FILES +=
INCLUDEPATH += ../../include ../../src
DEFINES += SCINTILLA_QT=1 MAKING_LIBRARY=1
CONFIG(release, debug|release) {
DEFINES += NDEBUG=1
}
DESTDIR = ../../bin
macx {
QMAKE_LFLAGS_SONAME = -Wl,-install_name,@executable_path/../Frameworks/
}