Add .ico file to freeze.py. Fixes #322.

This commit is contained in:
Florian Bruhin 2014-12-15 22:45:03 +01:00
parent 86d91b9c3d
commit 33120bb780

View File

@ -71,7 +71,9 @@ base = 'Win32GUI' if sys.platform.startswith('win') else None
executable = cx.Executable('qutebrowser/__main__.py', base=base, executable = cx.Executable('qutebrowser/__main__.py', base=base,
targetName='qutebrowser.exe', targetName='qutebrowser.exe',
shortcutName='qutebrowser', shortcutName='qutebrowser',
shortcutDir='ProgramMenuFolder') shortcutDir='ProgramMenuFolder',
icon=os.path.join(BASEDIR, 'icons',
'qutebrowser.ico'))
try: try:
setupcommon.write_git_file() setupcommon.write_git_file()