See if this fixes this damn dll

This commit is contained in:
Mike A. Trethewey
2020-03-04 00:54:42 -08:00
parent 9884e86459
commit 92cec430ff
2 changed files with 6 additions and 0 deletions

View File

@@ -35,6 +35,9 @@ a = Analysis(['DungeonRandomizer.py'],
cipher=block_cipher,
noarchive=False)
if sys.platform.find("windows"):
a.binaries.append("ucrtbase.dll")
# https://stackoverflow.com/questions/17034434/how-to-remove-exclude-modules-and-files-from-pyinstaller
excluded_binaries = [
'VCRUNTIME140.dll',

View File

@@ -40,6 +40,9 @@ a = Analysis(['Gui.py'],
cipher=block_cipher,
noarchive=False)
if sys.platform.find("windows"):
a.binaries.append("ucrtbase.dll")
# https://stackoverflow.com/questions/17034434/how-to-remove-exclude-modules-and-files-from-pyinstaller
excluded_binaries = [
'VCRUNTIME140.dll',