diff options
author | Neil <nyamatongwe@gmail.com> | 2020-11-02 22:48:14 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2020-11-02 22:48:14 +1100 |
commit | fef08214e2f1e16a81b41a7a5351de9368f220a4 (patch) | |
tree | 38b0cb6529e098cb143b8d6c5a05b01380666831 /win32/DepGen.py | |
parent | ecc3545ef863ad43c54a53b7ba0082d45f037bec (diff) | |
download | scintilla-mirror-fef08214e2f1e16a81b41a7a5351de9368f220a4.tar.gz |
Update DepGen to not look for lexers or lexlib.
Diffstat (limited to 'win32/DepGen.py')
-rw-r--r-- | win32/DepGen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/DepGen.py b/win32/DepGen.py index 563cae2a1..72ae027a5 100644 --- a/win32/DepGen.py +++ b/win32/DepGen.py @@ -13,8 +13,8 @@ from scripts import Dependencies topComment = "# Created by DepGen.py. To recreate, run DepGen.py.\n" def Generate(): - sources = ["../src/*.cxx", "../lexlib/*.cxx", "../lexers/*.cxx"] - includes = ["../include", "../src", "../lexlib"] + sources = ["../src/*.cxx"] + includes = ["../include", "../src"] # Create the dependencies file for g++ deps = Dependencies.FindDependencies(["../win32/*.cxx"] + sources, ["../win32"] + includes, ".o", "../win32/") |