From 8a13456f3ae0b55427e5a5b90151a3842e804950 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Sun, 24 Jul 2011 15:53:27 +0200 Subject: add windows program (.exe) icon --- scripts/make_windows_icon.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/make_windows_icon.py (limited to 'scripts') 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} + -- cgit v1.2.3