File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -175,3 +175,6 @@ cython_debug/
175175
176176# Flatpak builder
177177.flatpak-builder /
178+
179+ # Binary files
180+ * .bin
Original file line number Diff line number Diff line change 11# -*- mode: python ; coding: utf-8 -*-
22from PyInstaller .utils .hooks import collect_data_files
33
4- datas = []
4+ datas = [( 'LpcCrOSEC.bin' , '.' ) ]
55datas += collect_data_files ('yafi' )
66
77
88a = Analysis (
99 ['winyafi.py' ],
1010 pathex = [],
11- binaries = [( 'WinRing0x64.dll' , '.' ) ],
11+ binaries = [],
1212 datas = datas ,
1313 hiddenimports = ['cros_ec_python' ],
1414 hookspath = [],
1515 hooksconfig = {"gi" :{"module-versions" : {"Gtk" : "4.0" }}},
1616 runtime_hooks = [],
1717 excludes = [],
1818 noarchive = False ,
19- optimize = 0 ,
19+ optimize = 2 ,
2020)
2121pyz = PYZ (a .pure )
2222
@@ -39,5 +39,6 @@ exe = EXE(
3939 target_arch = None ,
4040 codesign_identity = None ,
4141 entitlements_file = None ,
42+ icon = ['yafi.ico' ],
4243 uac_admin = True ,
4344)
You can’t perform that action at this time.
0 commit comments