blob: 7c392a2d237fae6fb755b1e944147b4f61ec0723 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
top_srcdir="${1:-../..}"
imagebase="$top_srcdir/imagebase"
UIC=$(grep "UIC = " ../../Makefile | cut -f3- -d" ")
echo -e "#ifndef DCPIXMAPS_H\n#define DCPIXMAPS_H\n" > pixmaps.h
$UIC -embed baghira \
$imagebase/icon_help \
$imagebase/preview \
$imagebase/preview-menu >> pixmaps.h
echo -e "#endif //DCPIXMAPS_H\n" >> pixmaps.h
|