aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2011-07-24 15:53:27 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2011-07-24 15:53:27 +0200
commit8a13456f3ae0b55427e5a5b90151a3842e804950 (patch)
treea4fbb6c472743b400f296217c96f6950fe054d3e /scripts
parent1a925b8e60e4d5cf0876c9f94a2564dad7f09eb1 (diff)
downloadbitcoin-8a13456f3ae0b55427e5a5b90151a3842e804950.tar.xz
add windows program (.exe) icon
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/make_windows_icon.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/make_windows_icon.py b/scripts/make_windows_icon.py
new file mode 100755
index 0000000000..d722ebe9b6
--- /dev/null
+++ b/scripts/make_windows_icon.py
@@ -0,0 +1,9 @@
+#!/bin/bash
+# create multiresolution windows icon
+ICON_SRC=../src/qt/res/icons/bitcoin.png
+ICON_DST=../src/qt/res/icons/bitcoin.ico
+convert ${ICON_SRC} -resize 16x16 bitcoin-16.png
+convert ${ICON_SRC} -resize 32x32 bitcoin-32.png
+convert ${ICON_SRC} -resize 48x48 bitcoin-48.png
+convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST}
+