diff options
| author | nyamatongwe <devnull@localhost> | 2001-05-01 11:12:42 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-05-01 11:12:42 +0000 |
| commit | 2bf292a604d2b8e2bb07be283d8ab0067f24a43b (patch) | |
| tree | 2d1d090c6804a9af2f81f04c4554c22e819a1487 /win32/scintilla.mak | |
| parent | 581baaf98ebddddf0984b7b5bab90216069ac8b6 (diff) | |
| download | scintilla-mirror-2bf292a604d2b8e2bb07be283d8ab0067f24a43b.tar.gz | |
External lexer feature added by Simon allows lexers to be housed in DLLs with
a .lexer extension which are automatically loaded at startup.
Minor fix to IME support in ScintillaWin.cxx to deal with current mingw headers.
Diffstat (limited to 'win32/scintilla.mak')
| -rw-r--r-- | win32/scintilla.mak | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 5d6d9a3f5..89596d045 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -126,6 +126,7 @@ LOBJS=\ $(DIR_O)\Document.obj \ $(DIR_O)\DocumentAccessor.obj \ $(DIR_O)\Editor.obj \ + $(DIR_O)\ExternalLexer.obj \ $(DIR_O)\Indicator.obj \ $(DIR_O)\KeyMap.obj \ $(DIR_O)\KeyWords.obj \ @@ -207,6 +208,10 @@ $(DIR_O)\Editor.obj: ..\src\Editor.cxx ..\include\Platform.h ..\include\Scintill ..\src\CellBuffer.h ..\src\KeyMap.h ..\src\Indicator.h ..\src\LineMarker.h ..\src\Style.h ..\src\ViewStyle.h \ ..\src\Document.h ..\src\Editor.h +$(DIR_O)\ExternalLexer.obj: ExternalLexer.cxx ExternalLexer.h \ + ..\include\SciLexer.h ..\include\Platform.h ..\include\PropSet.h ..\include\SString.h \ + ..\include\Accessor.h ..\src\DocumentAccessor.h ..\include\KeyWords.h \ + $(DIR_O)\Indicator.obj: ..\src\Indicator.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\Indicator.h $(DIR_O)\KeyMap.obj: ..\src\KeyMap.cxx ..\include\Platform.h ..\include\Scintilla.h ..\src\KeyMap.h |
