Commit 1832297f authored by Ronan Abhamon's avatar Ronan Abhamon

feat(app): `build_resources_file` script to build automatically resources.qrc

parent 3ed1c6b7
#!/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|qm) ]]; then
echo " <file>$filename</file>"
fi
done
echo " </qresource>"
echo "</RCC>"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment