forked from sc0ty/subsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
windows.spec
105 lines (95 loc) · 2.53 KB
/
windows.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# -*- mode: python ; coding: utf-8 -*-
main_a = Analysis(['bin/subsync'],
pathex=['.'],
binaries=[],
datas=[
('LICENSE', '.'),
('subsync/key.pub', '.'),
('subsync/img', 'img'),
('subsync/locale', 'locale'),
],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=None,
noarchive=False)
main_pyz = PYZ(main_a.pure, main_a.zipped_data, cipher=None)
main_exe = EXE(main_pyz,
main_a.scripts,
[],
exclude_binaries=True,
name='subsync',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
icon='resources/icon.ico')
main_dbg = EXE(main_pyz,
main_a.scripts,
[],
exclude_binaries=True,
name='subsync-debug',
debug=True,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
icon='resources/icon.ico')
main_cmd = EXE(main_pyz,
main_a.scripts,
[],
exclude_binaries=True,
name='subsync-cmd',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
icon='resources/icon.ico')
main_coll = COLLECT(main_exe,
main_dbg,
main_cmd,
main_a.binaries,
main_a.zipfiles,
main_a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='subsync')
portable_a = Analysis(['bin/portable'],
pathex=['.'],
binaries=[],
datas=[
('LICENSE', '.'),
('subsync/key.pub', '.'),
('subsync/img', 'img'),
('subsync/locale', 'locale'),
],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=None,
noarchive=False)
portable_pyz = PYZ(portable_a.pure, portable_a.zipped_data, cipher=None)
portable_exe = EXE(portable_pyz,
portable_a.scripts,
portable_a.binaries,
portable_a.zipfiles,
portable_a.datas,
[],
name='subsync-portable',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
icon='resources/icon.ico')