mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo '<RCC>'
|
|
echo '\t<qresource prefix="/">'
|
|
|
|
for i in `ls *.png */*png */*svg`; do
|
|
echo '\t\t<file>icons/'$i'</file>'
|
|
done
|
|
|
|
echo '\t</qresource>'
|
|
echo '</RCC>'
|