blob: 36cb38cc12840848eebfb3f1c1effd0199bc0c9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
mkdir -p @CMAKE_CURRENT_BINARY_DIR@/images
for f in `ls @CMAKE_CURRENT_SOURCE_DIR@/images/*.svg`
do
@RSVG_COMMAND@ --width=32 --height=32 --output=images/`basename $f .svg`.png --format=png $f
done
tquic -o buttons.h -embed buttons images/circle.png images/circle2.png images/close.png images/help.png images/keep_above.png images/keep_above_lit.png images/keep_below.png images/keep_below_lit.png images/maximize.png images/minimize.png images/restore.png images/splat.png images/unsplat.png images/window_background.png images/window_foreground.png
sed -i -e "s/factory/bfactory/" buttons.h
|