From fef08214e2f1e16a81b41a7a5351de9368f220a4 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 2 Nov 2020 22:48:14 +1100 Subject: Update DepGen to not look for lexers or lexlib. --- win32/DepGen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win32') 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/") -- cgit v1.2.3