aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/scintilla.mak
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-06-02 05:18:13 +0000
committernyamatongwe <unknown>2007-06-02 05:18:13 +0000
commit284a7cde23d26ccc5c5b75aaa9c1e69e659a4adc (patch)
tree22d32a8aeccfda9902240bfca1ffad692136f45c /win32/scintilla.mak
parentb78f4e0f1eeb340c23b3c9df896da7405c2e0217 (diff)
downloadscintilla-mirror-284a7cde23d26ccc5c5b75aaa9c1e69e659a4adc.tar.gz
Addition of PositionCache module which adds cacing of string
to position information and segments long pieces of text so they can be handled more efficiently.
Diffstat (limited to 'win32/scintilla.mak')
-rw-r--r--win32/scintilla.mak10
1 files changed, 9 insertions, 1 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak
index da3c506bd..b6b4749ef 100644
--- a/win32/scintilla.mak
+++ b/win32/scintilla.mak
@@ -99,6 +99,7 @@ SOBJS=\
$(DIR_O)\KeyMap.obj \
$(DIR_O)\LineMarker.obj \
$(DIR_O)\PlatWin.obj \
+ $(DIR_O)\PositionCache.obj \
$(DIR_O)\PropSet.obj \
$(DIR_O)\RESearch.obj \
$(DIR_O)\RunStyles.obj \
@@ -193,6 +194,7 @@ LOBJS=\
$(DIR_O)\KeyWords.obj \
$(DIR_O)\LineMarker.obj \
$(DIR_O)\PlatWin.obj \
+ $(DIR_O)\PositionCache.obj \
$(DIR_O)\PropSet.obj \
$(DIR_O)\RESearch.obj \
$(DIR_O)\RunStyles.obj \
@@ -280,7 +282,7 @@ $(DIR_O)\Editor.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintill
../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \
../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \
../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \
- ../src/Decoration.h ../src/Document.h ../src/Editor.h
+ ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h
$(DIR_O)\ExternalLexer.obj: ../src/ExternalLexer.cxx ../include/Platform.h \
../include/Scintilla.h ../include/SciLexer.h ../include/PropSet.h \
../include/SString.h ../include/Accessor.h ../src/DocumentAccessor.h \
@@ -427,6 +429,12 @@ $(DIR_O)\LineMarker.obj: ../src/LineMarker.cxx ../include/Platform.h \
../include/Scintilla.h ../src/XPM.h ../src/LineMarker.h
$(DIR_O)\PlatWin.obj: PlatWin.cxx ../include/Platform.h PlatformRes.h \
../src/UniConversion.h ../src/XPM.h
+$(DIR_O)\PositionCache.obj: ../src/Editor.cxx ../include/Platform.h ../include/Scintilla.h \
+ ../src/ContractionState.h ../src/SVector.h ../src/SplitVector.h \
+ ../src/Partitioning.h ../src/CellBuffer.h ../src/KeyMap.h \
+ ../src/RunStyles.h ../src/Indicator.h ../src/XPM.h ../src/LineMarker.h \
+ ../src/Style.h ../src/ViewStyle.h ../src/CharClassify.h \
+ ../src/Decoration.h ../src/Document.h ../src/Editor.h ../src/PositionCache.h
$(DIR_O)\PropSet.obj: ../src/PropSet.cxx ../include/Platform.h ../include/PropSet.h \
../include/SString.h
$(DIR_O)\RESearch.obj: ../src/RESearch.cxx ../src/CharClassify.h ../src/RESearch.h