Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions clients/desktop/PlayPalace.spec
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# -*- mode: python ; coding: utf-8 -*-

from pathlib import Path


CLIENT_DIR = Path(SPECPATH)

a = Analysis(
['client.py'],
pathex=[],
[str(CLIENT_DIR / 'client.py')],
pathex=[str(CLIENT_DIR)],
binaries=[],
datas=[('sounds', 'sounds')],
datas=[(str(CLIENT_DIR / 'sounds'), 'sounds')],
hiddenimports=[],
hookspath=[],
hooksconfig={},
Expand All @@ -24,7 +29,7 @@ exe = EXE(
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx=False,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
Expand All @@ -37,13 +42,13 @@ coll = COLLECT(
a.binaries,
a.datas,
strip=False,
upx=True,
upx=False,
upx_exclude=[],
name='PlayPalace',
)
app = BUNDLE(
coll,
name='PlayPalace.app',
icon=None,
bundle_identifier=None,
icon=str(CLIENT_DIR / 'assets' / 'playpalace.icns'),
bundle_identifier='com.xgdevgroup.playpalace',
)
Binary file added clients/desktop/assets/playpalace.icns
Binary file not shown.
Loading