Windows
This commit is contained in:
@@ -104,26 +104,25 @@ pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
[],
|
||||
[], # ← onedir: ingen binaries/datas her
|
||||
exclude_binaries=True, # ← onedir: binaries samles i COLLECT
|
||||
name='LineDancePlayer',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[
|
||||
'vcruntime140.dll',
|
||||
'msvcp140.dll',
|
||||
'python3*.dll',
|
||||
'Qt6*.dll',
|
||||
],
|
||||
upx_exclude=['Qt6*.dll', 'python3*.dll', 'vcruntime140.dll'],
|
||||
console=False,
|
||||
disable_windowed_traceback=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
icon=None,
|
||||
onefile=True,
|
||||
)
|
||||
|
||||
coll = COLLECT(
|
||||
exe,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=['Qt6*.dll', 'python3*.dll', 'vcruntime140.dll'],
|
||||
name='LineDancePlayer',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user