diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-12-13 10:15:42 +1100 | 
| commit | 54c7ef44396c43b964060cb15e2ebdbf7359cb02 (patch) | |
| tree | 19e0aaa84f43dff55da2a4adefbbccdcc543a201 /win32/nmdeps.mak | |
| parent | 9f57c6efaee18d374da2abdb2e556830f2beb592 (diff) | |
| download | scintilla-mirror-54c7ef44396c43b964060cb15e2ebdbf7359cb02.tar.gz | |
Move SCI_LOADLEXERLIBRARY from platform layers to ScintillaBase.cxx.
This allows removal of related #include statements.
Diffstat (limited to 'win32/nmdeps.mak')
| -rw-r--r-- | win32/nmdeps.mak | 12 | 
1 files changed, 4 insertions, 8 deletions
diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak index 9fac2cad5..f5610bb5b 100644 --- a/win32/nmdeps.mak +++ b/win32/nmdeps.mak @@ -23,9 +23,7 @@ $(DIR_O)/ScintillaWin.obj: \  	../include/Sci_Position.h \  	../include/ILexer.h \  	../include/Scintilla.h \ -	../include/SciLexer.h \  	../lexlib/CharacterCategory.h \ -	../lexlib/LexerModule.h \  	../src/Position.h \  	../src/UniqueString.h \  	../src/SplitVector.h \ @@ -54,7 +52,6 @@ $(DIR_O)/ScintillaWin.obj: \  	../src/ElapsedPeriod.h \  	../src/AutoComplete.h \  	../src/ScintillaBase.h \ -	../src/ExternalLexer.h \  	PlatWin.h \  	HanjaDic.h \  	ScintillaWin.h @@ -65,9 +62,7 @@ $(DIR_O)/ScintillaWinL.obj: \  	../include/Sci_Position.h \  	../include/ILexer.h \  	../include/Scintilla.h \ -	../include/SciLexer.h \  	../lexlib/CharacterCategory.h \ -	../lexlib/LexerModule.h \  	../src/Position.h \  	../src/UniqueString.h \  	../src/SplitVector.h \ @@ -96,7 +91,6 @@ $(DIR_O)/ScintillaWinL.obj: \  	../src/ElapsedPeriod.h \  	../src/AutoComplete.h \  	../src/ScintillaBase.h \ -	../src/ExternalLexer.h \  	PlatWin.h \  	HanjaDic.h \  	ScintillaWin.h @@ -437,7 +431,8 @@ $(DIR_O)/ScintillaBase.obj: \  	../src/EditView.h \  	../src/Editor.h \  	../src/AutoComplete.h \ -	../src/ScintillaBase.h +	../src/ScintillaBase.h \ +	../src/ExternalLexer.h  $(DIR_O)/ScintillaBaseL.obj: \  	../src/ScintillaBase.cxx \  	../include/Platform.h \ @@ -474,7 +469,8 @@ $(DIR_O)/ScintillaBaseL.obj: \  	../src/EditView.h \  	../src/Editor.h \  	../src/AutoComplete.h \ -	../src/ScintillaBase.h +	../src/ScintillaBase.h \ +	../src/ExternalLexer.h  $(DIR_O)/Selection.obj: \  	../src/Selection.cxx \  	../include/Platform.h \  | 
