2020-06-30 21:35:24 +00:00
|
|
|
#!/bin/sh
|
|
|
|
cd ./ui/
|
|
|
|
QRC=./resources.qrc
|
|
|
|
echo '<!DOCTYPE RCC>' > $QRC
|
|
|
|
echo '<RCC version="1.0">' >> $QRC
|
|
|
|
echo ' <qresource>' >> $QRC
|
2021-05-04 15:16:56 +00:00
|
|
|
for a in $(find -L . -not -name "*.pro" -not -name "*.rcc" -not -name "*.sh" -not -name "*.qrc" -not -name ".git" -not -name ".gitignore" )
|
2020-06-30 21:35:24 +00:00
|
|
|
do
|
|
|
|
if [ ! -d "$a" ]; then
|
|
|
|
echo ' <file>'$a'</file>' >> $QRC
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
echo ' </qresource>' >> $QRC
|
|
|
|
echo '</RCC>' >> $QRC
|
|
|
|
cd ..
|