diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-07-11 10:43:40 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-07-11 10:43:40 +1000 |
| commit | 5262f832018923ecc8ccd25bedecbd5a291a563f (patch) | |
| tree | d14831d0e08cd988dd8425674a29d514326c99f4 /win32/makefile | |
| parent | 8ee42f850d492efbec73969eca52243e1acd1c96 (diff) | |
| download | scintilla-mirror-5262f832018923ecc8ccd25bedecbd5a291a563f.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/makefile | 10 |
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 $@ |
