move qt-specific scripts to qt-specific directory in scripts/

This commit is contained in:
Wladimir J. van der Laan
2011-09-18 12:04:03 +02:00
parent 5dd7318db7
commit 3c66913cd2
4 changed files with 3 additions and 3 deletions

View File

@@ -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}