Add working example of packing for desktops.
This commit is contained in:
parent
58558bf0b5
commit
30a8e27f4a
|
@ -3,9 +3,9 @@ block_cipher = None
|
||||||
|
|
||||||
|
|
||||||
a = Analysis(['main.py'],
|
a = Analysis(['main.py'],
|
||||||
pathex=['/home/dorian.pula/colonia/doric-engine'],
|
pathex=['.'],
|
||||||
binaries=None,
|
binaries=None,
|
||||||
datas=None,
|
datas=[('*.kv', '.')],
|
||||||
hiddenimports=[],
|
hiddenimports=[],
|
||||||
hookspath=[],
|
hookspath=[],
|
||||||
runtime_hooks=[],
|
runtime_hooks=[],
|
||||||
|
@ -15,9 +15,6 @@ a = Analysis(['main.py'],
|
||||||
cipher=block_cipher)
|
cipher=block_cipher)
|
||||||
pyz = PYZ(a.pure, a.zipped_data,
|
pyz = PYZ(a.pure, a.zipped_data,
|
||||||
cipher=block_cipher)
|
cipher=block_cipher)
|
||||||
|
|
||||||
a.datas += [('strategygame.kv', 'debug.kv')]
|
|
||||||
|
|
||||||
exe = EXE(pyz,
|
exe = EXE(pyz,
|
||||||
a.scripts,
|
a.scripts,
|
||||||
a.binaries,
|
a.binaries,
|
||||||
|
|
Loading…
Reference in New Issue