diff options
author | 2018-12-10 19:58:52 -0800 | |
---|---|---|
committer | 2018-12-10 19:58:52 -0800 | |
commit | 0e4ad88ff8956d9289ab0a1314636ac15b374459 (patch) | |
tree | 3c8216e19854f3d733bc6377c1dd39d4c0a35536 /PC/pylauncher.rc | |
parent | Fix numbered lists in stdtypes.rst. (GH-10989) (diff) | |
download | cpython-0e4ad88ff8956d9289ab0a1314636ac15b374459.tar.gz cpython-0e4ad88ff8956d9289ab0a1314636ac15b374459.tar.bz2 cpython-0e4ad88ff8956d9289ab0a1314636ac15b374459.zip |
bpo-34977: Add Windows App Store package (GH-11027)
Also adds the PC/layout script for generating layouts on Windows.
Diffstat (limited to 'PC/pylauncher.rc')
-rw-r--r-- | PC/pylauncher.rc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/PC/pylauncher.rc b/PC/pylauncher.rc index 3da3445f5fc..92987af7138 100644 --- a/PC/pylauncher.rc +++ b/PC/pylauncher.rc @@ -7,6 +7,11 @@ #include <winuser.h> 1 RT_MANIFEST "python.manifest" +#if defined(PY_ICON) +1 ICON DISCARDABLE "icons\python.ico" +#elif defined(PYW_ICON) +1 ICON DISCARDABLE "icons\pythonw.ico" +#else 1 ICON DISCARDABLE "icons\launcher.ico" 2 ICON DISCARDABLE "icons\py.ico" 3 ICON DISCARDABLE "icons\pyc.ico" @@ -14,6 +19,7 @@ 5 ICON DISCARDABLE "icons\python.ico" 6 ICON DISCARDABLE "icons\pythonw.ico" 7 ICON DISCARDABLE "icons\setup.ico" +#endif ///////////////////////////////////////////////////////////////////////////// // |