forked from parallaxinc/BlocklyPropClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlocklyPropClient.linux.spec
30 lines (28 loc) · 1.02 KB
/
BlocklyPropClient.linux.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- mode: python -*-
a = Analysis(['BlocklyPropClient.py'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='BlocklyPropClient',
debug=False,
strip=None,
upx=True,
console=True,
icon='blocklyprop.ico' )
propeller_libs_and_tools = Tree('propeller-tools', prefix='propeller-tools', excludes=['*.pdf', 'windows', 'mac'])
propeller_libs_and_tools += Tree('propeller-lib', prefix='propeller-lib')
propeller_libs_and_tools += Tree('propeller-c-lib', prefix='propeller-c-lib', excludes=['*.html', 'html', '*.doxyfile', '*.side', '*.c'])
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
propeller_libs_and_tools,
strip=None,
upx=True,
name='BlocklyPropClient.linux')
# Analysis
# pathex=['D:\\Development\\python\\BlocklyPropClient'],