aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/makefile
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2013-07-11 10:43:40 +1000
committerNeil <nyamatongwe@gmail.com>2013-07-11 10:43:40 +1000
commitdad0081820141b9823f8a4ad633b28515f055f1f (patch)
tree823e4cc29a3fa9a524aa308bb824cf5406c7b47f /win32/makefile
parent431004e5efda4bddbeb265db3d0e28fda828a808 (diff)
downloadscintilla-mirror-dad0081820141b9823f8a4ad633b28515f055f1f.tar.gz
Include case conversion data in Scintilla so that all platforms will perform
case conversion of Unicode text in accordance with Unicode.
Diffstat (limited to 'win32/makefile')
-rw-r--r--win32/makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/win32/makefile b/win32/makefile
index efcb518cb..c9086969a 100644
--- a/win32/makefile
+++ b/win32/makefile
@@ -48,6 +48,8 @@ LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx))))
BASEOBJS = \
AutoComplete.o \
CallTip.o \
+ CaseConvert.o \
+ CaseFolder.o \
CellBuffer.o \
CharacterCategory.o \
CharacterSet.o \
@@ -111,7 +113,7 @@ ScintillaBaseL.o: ScintillaBase.cxx Platform.h \
CharClassify.h Decoration.h Document.h \
Selection.h PositionCache.h Editor.h \
ScintillaBase.h LexAccessor.h Accessor.h \
- LexerModule.h Catalogue.h
+ LexerModule.h Catalogue.h CaseFolder.h
ScintillaWinL.o: ScintillaWin.cxx Platform.h \
ILexer.h Scintilla.h SplitVector.h \
@@ -122,7 +124,8 @@ ScintillaWinL.o: ScintillaWin.cxx Platform.h \
Document.h Selection.h PositionCache.h \
Editor.h ScintillaBase.h UniConversion.h \
LexAccessor.h Accessor.h \
- LexerModule.h Catalogue.h
+ LexerModule.h Catalogue.h CaseConvert.h \
+ CaseFolder.h
ScintillaWinS.o: ScintillaWin.cxx Platform.h \
ILexer.h Scintilla.h SplitVector.h \
@@ -131,7 +134,8 @@ ScintillaWinS.o: ScintillaWin.cxx Platform.h \
XPM.h LineMarker.h Style.h AutoComplete.h \
ViewStyle.h CharClassify.h Decoration.h \
Document.h Selection.h PositionCache.h \
- Editor.h ScintillaBase.h UniConversion.h
+ Editor.h ScintillaBase.h UniConversion.h \
+ CaseConvert.h CaseFolder.h
ScintillaBaseL.o:
$(CC) $(CXXFLAGS) -D SCI_LEXER -c $< -o $@