diff options
author | nyamatongwe <devnull@localhost> | 2010-11-10 22:15:14 +1100 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-11-10 22:15:14 +1100 |
commit | f274156575e9eabfe011b7934d4c9a547c8270f7 (patch) | |
tree | 720b1407bd8b1312d672062dff955b83163468ba /src/LexGen.py | |
parent | 338abd6dbcd93555cdff67161155018de2728058 (diff) | |
download | scintilla-mirror-f274156575e9eabfe011b7934d4c9a547c8270f7.tar.gz |
Remove support for Borland C++.
Use a library for the lexers with MSVC to simplify SciTE makefile.
Diffstat (limited to 'src/LexGen.py')
-rw-r--r-- | src/LexGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LexGen.py b/src/LexGen.py index 5084596c6..d4ff21555 100644 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -295,8 +295,8 @@ def RegenerateAll(): Regenerate(root + "scintilla/win32/scintilla.mak", "#", NATIVE, lexFiles) Regenerate(root + "scintilla/win32/scintilla_vc6.mak", "#", NATIVE, lexFiles) if os.path.exists(root + "scite"): - Regenerate(root + "scite/win32/makefile", "#", NATIVE, lexFiles, propFiles) - Regenerate(root + "scite/win32/scite.mak", "#", NATIVE, lexFiles, propFiles) + Regenerate(root + "scite/win32/makefile", "#", NATIVE, propFiles) + Regenerate(root + "scite/win32/scite.mak", "#", NATIVE, propFiles) Regenerate(root + "scite/src/SciTEProps.cxx", "//", NATIVE, lexerProperties) Regenerate(root + "scite/doc/SciTEDoc.html", "<!--", NATIVE, propertiesHTML) Generate(root + "scite/boundscheck/vcproj.gen", |