diff options
| author | mitchell <unknown> | 2018-03-11 23:04:41 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2018-03-11 23:04:41 -0400 |
| commit | 519b7328b66c4c84f03893a31e4be5ba6b1395f2 (patch) | |
| tree | 2055cd79006357e94c185f341d0df17b9a8769eb /win32/scintilla.mak | |
| parent | c0373e036e965a70045971e2abc582cb4bf12a4e (diff) | |
| download | scintilla-mirror-519b7328b66c4c84f03893a31e4be5ba6b1395f2.tar.gz | |
Added optional Lua lexer support.
This support is disabled by default and must be enabled via compile-time option.
Diffstat (limited to 'win32/scintilla.mak')
| -rw-r--r-- | win32/scintilla.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/scintilla.mak b/win32/scintilla.mak index c13eedc7d..aec630604 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -157,6 +157,7 @@ LEXOBJS=\ $(DIR_O)\LexLaTeX.obj \ $(DIR_O)\LexLisp.obj \ $(DIR_O)\LexLout.obj \ + $(DIR_O)\LexLPeg.obj \ $(DIR_O)\LexLua.obj \ $(DIR_O)\LexMagik.obj \ $(DIR_O)\LexMake.obj \ @@ -607,6 +608,8 @@ $(DIR_O)\LexLisp.obj: ..\lexers\LexLisp.cxx $(LEX_HEADERS) $(DIR_O)\LexLout.obj: ..\lexers\LexLout.cxx $(LEX_HEADERS) +$(DIR_O)\LexLPeg.obj: ..\lexers\LexLPeg.cxx $(LEX_HEADERS) + $(DIR_O)\LexLua.obj: ..\lexers\LexLua.cxx $(LEX_HEADERS) $(DIR_O)\LexMagik.obj: ..\lexers\LexMagik.cxx $(LEX_HEADERS) |
