diff options
author | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-12-31 20:19:24 +1100 |
commit | 0af155eae811e515b7d4fbad8e198cdf01f6ff2f (patch) | |
tree | 39e4b88da4736d3c6556cf1b39ca2e01b9e1a789 /win32/DepGen.py | |
parent | eed707bb9ad6da944af207a51e4a8d460d6c6846 (diff) | |
download | scintilla-mirror-0af155eae811e515b7d4fbad8e198cdf01f6ff2f.tar.gz |
Implement SCI_SETILEXER.
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r-- | win32/DepGen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py index c255574b0..6196720e2 100644 --- a/win32/DepGen.py +++ b/win32/DepGen.py @@ -22,6 +22,9 @@ def Generate(): # Add ScintillaBaseL as the same as ScintillaBase deps = Dependencies.InsertSynonym(deps, "ScintillaBase.o", "ScintillaBaseL.o") + # Add CatalogueL as the same as Catalogue + deps = Dependencies.InsertSynonym(deps, "Catalogue.o", "CatalogueL.o") + Dependencies.UpdateDependencies("../win32/deps.mak", deps, topComment) # Create the dependencies file for MSVC |