Skip to content

Commit fad3d3f

Browse files
author
loewis
committed
Help compiling icons into an exe, for use with MSI advertisement.
git-svn-id: http://svn.python.org/projects/python/trunk@36982 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 0afe737 commit fad3d3f

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

PC/icons.mak

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
python_icon.exe: py.res empty.obj
2+
link /out:python_icon.exe /machine:x86 /subsystem:windows py.res empty.obj
3+
4+
py.res: py.ico pyc.ico pycon.ico icons.rc
5+
rc /fo py.res icons.rc
6+
7+
empty.obj: empty.c
8+
cl /c empty.c
9+

PC/icons.rc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
101 ICON "py.ico"
2+
102 ICON "pyc.ico"
3+
103 ICON "pycon.ico"
4+

0 commit comments

Comments
 (0)