aboutsummaryrefslogtreecommitdiff
path: root/rcc_format/generate.py
diff options
context:
space:
mode:
Diffstat (limited to 'rcc_format/generate.py')
-rwxr-xr-xrcc_format/generate.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/rcc_format/generate.py b/rcc_format/generate.py
new file mode 100755
index 0000000..f42f6d4
--- /dev/null
+++ b/rcc_format/generate.py
@@ -0,0 +1,9 @@
+def generate(filelist, args):
+ print('<RCC>', file=args.output)
+ #echo ' <qresource prefix="/icons">'
+ #for f in $@; do
+ # echo ' <file alias="'$(basename $f)'">'$f'</file>';
+ #done
+ #echo ' </qresource>'
+ print('</RCC>', file=args.output)
+