mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
16 lines
333 B
Bash
Executable file
16 lines
333 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
echo "<!DOCTYPE RCC><RCC version=\"1.0\">"
|
|
echo " <qresource prefix=\"/\">"
|
|
|
|
for filename in $(find languages/ ui/ imgs/ -type f)
|
|
do
|
|
extension="${filename##*.}"
|
|
|
|
if [[ "${extension}" == @(qml|svg|png|qm|js) ]]; then
|
|
echo " <file>$filename</file>"
|
|
fi
|
|
done
|
|
|
|
echo " </qresource>"
|
|
echo "</RCC>"
|