Made get_dlls.py get dlls for wesnothd too

This commit is contained in:
loonycyborg 2021-10-26 17:17:16 +03:00
parent 100045c00f
commit 9a1b4caa55

View file

@ -4,7 +4,7 @@ import pefile, pathlib, shutil
dlls = set()
dllpath = pathlib.Path('/windows/mingw64/bin')
pe_modules = set([pefile.PE('wesnoth.exe')])
pe_modules = set([pefile.PE('wesnoth.exe'), pefile.PE('wesnothd.exe')])
while pe_modules:
pe = pe_modules.pop()