diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-09-05 21:05:17 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-09-05 21:05:17 (GMT) |
commit | c7d1cf4de95361e5d29422b63ae623919215fea4 (patch) | |
tree | 13f939cf532917542f4b2ba4cc91460f11bcb08f /Tools/msi/exe | |
parent | 942dd9f3f77eef08fabddbd9fb883a866ad6d4cb (diff) | |
download | cpython-c7d1cf4de95361e5d29422b63ae623919215fea4.zip cpython-c7d1cf4de95361e5d29422b63ae623919215fea4.tar.gz cpython-c7d1cf4de95361e5d29422b63ae623919215fea4.tar.bz2 |
Issue #27756: Adds new icons for Python files and processes on Windows. Designs by Cherry Wang.
Diffstat (limited to 'Tools/msi/exe')
-rw-r--r-- | Tools/msi/exe/exe_files.wxs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Tools/msi/exe/exe_files.wxs b/Tools/msi/exe/exe_files.wxs index c157f40..0138587 100644 --- a/Tools/msi/exe/exe_files.wxs +++ b/Tools/msi/exe/exe_files.wxs @@ -69,10 +69,13 @@ <Fragment> <ComponentGroup Id="exe_icons"> <Component Id="py.ico" Directory="DLLs" Guid="*"> - <File Name="py.ico" Source="!(bindpath.src)PC\py.ico" KeyPath="yes" /> + <File Name="py.ico" Source="!(bindpath.src)PC\icons\py.ico" KeyPath="yes" /> </Component> <Component Id="pyc.ico" Directory="DLLs" Guid="*"> - <File Name="pyc.ico" Source="!(bindpath.src)PC\pyc.ico" KeyPath="yes" /> + <File Name="pyc.ico" Source="!(bindpath.src)PC\icons\pyc.ico" KeyPath="yes" /> + </Component> + <Component Id="pyd.ico" Directory="DLLs" Guid="*"> + <File Name="pyd.ico" Source="!(bindpath.src)PC\icons\pyd.ico" KeyPath="yes" /> </Component> </ComponentGroup> </Fragment> |