Skip to content

Commit

Permalink
Try to include binaries in exe
Browse files Browse the repository at this point in the history
  • Loading branch information
kleag committed Jun 11, 2024
1 parent f8bcbb3 commit bdf3899
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions yaas.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exe = EXE(
a.binaries,
a.datas,
[],
exclude_binaries=True,
exclude_binaries=False,
name='yaas',
debug=False,
bootloader_ignore_signals=False,
Expand All @@ -38,6 +38,7 @@ exe = EXE(
runtime_tmpdir=None,
console=False,
)
# exclude_binaries=True,
# disable_windowed_traceback=False,
# argv_emulation=False,
# target_arch=None,
Expand All @@ -56,11 +57,11 @@ coll = COLLECT(
name='yaas',
)

app = BUNDLE(
coll,
name='yaas',
format='onefile'
)
# app = BUNDLE(
# coll,
# name='yaas',
# format='onefile'
# )
# icon=None,
# bundle_identifier=None,
# version=None,

0 comments on commit bdf3899

Please sign in to comment.