mirror of https://github.com/PCSX2/pcsx2.git
14 lines
238 B
Bash
14 lines
238 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
IFS="
|
||
|
"
|
||
|
|
||
|
printf "<RCC>\n"
|
||
|
printf "\t<qresource>\n"
|
||
|
for i in $(find . -not -iname '*.sh' -not -iname '*.qrc' -type f | cut -d'/' -f2-99); do
|
||
|
printf "\t\t<file>%s</file>\n" "$i"
|
||
|
done
|
||
|
printf "\t</qresource>\n"
|
||
|
printf "</RCC>\n"
|
||
|
|