First Commit
This commit is contained in:
13
pcsx2-qt/resources/generate.sh
Executable file
13
pcsx2-qt/resources/generate.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/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"
|
||||
|
||||
Reference in New Issue
Block a user