mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 20:10:08 +01:00
Add doodle sample
This commit is contained in:
48
samples/doodle/superdoodle.spec
Normal file
48
samples/doodle/superdoodle.spec
Normal file
@@ -0,0 +1,48 @@
|
||||
# -*- mode: python -*-
|
||||
#
|
||||
# This is a spec file for PyInstaller. To make a binary distribution of the
|
||||
# superdoodle application run a command like this:
|
||||
#
|
||||
# pyinstaller superdoodle.spec
|
||||
#
|
||||
# And then look in the ./dist folder for the results
|
||||
#
|
||||
|
||||
block_cipher = None
|
||||
|
||||
|
||||
a = Analysis(['superdoodle.py'],
|
||||
pathex=['.'],
|
||||
binaries=[],
|
||||
datas=[('mondrian.ico', '.')],
|
||||
hiddenimports=[],
|
||||
hookspath=[],
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher,
|
||||
noarchive=False)
|
||||
pyz = PYZ(a.pure, a.zipped_data,
|
||||
cipher=block_cipher)
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
[],
|
||||
exclude_binaries=True,
|
||||
name='superdoodle',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
console=False )
|
||||
coll = COLLECT(exe,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
strip=False,
|
||||
upx=True,
|
||||
name='superdoodle')
|
||||
app = BUNDLE(coll,
|
||||
name='superdoodle.app',
|
||||
icon='mondrian.icns',
|
||||
bundle_identifier=None)
|
||||
Reference in New Issue
Block a user