mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-12 01:14:29 -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>'
|