pcsx2/pcsx2-qt/resources/generate.sh

14 lines
265 B
Bash
Executable File

#!/bin/sh
IFS="
"
printf "<RCC>\n"
printf "\t<qresource>\n"
for i in $(find . -not -iname '.*' -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99 | sort -f); do
printf "\t\t<file>%s</file>\n" "$i"
done
printf "\t</qresource>\n"
printf "</RCC>\n"