mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-27 16:15:41 +00:00
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"
|
|
|