You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
351 B
10 lines
351 B
13 years ago
|
#!/bin/bash
|
||
|
# create multiresolution windows icon
|
||
13 years ago
|
ICON_SRC=../../src/qt/res/icons/bitcoin.png
|
||
|
ICON_DST=../../src/qt/res/icons/bitcoin.ico
|
||
13 years ago
|
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}
|
||
|
|