aboutsummaryrefslogtreecommitdiff
path: root/dependencies.py
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies.py')
-rw-r--r--dependencies.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/dependencies.py b/dependencies.py
index 47bd1c0..1e10978 100644
--- a/dependencies.py
+++ b/dependencies.py
@@ -524,9 +524,9 @@ class Qt5Dependency(Dependency):
ui_rule = CustomRule([self.uic.get_command(), '@INFILE@', '-o', '@OUTFILE@'],
'ui_@BASENAME@.h', 'ui_files', 'ui_compile',
'Compiling @INFILE@ with the ui compiler')
- rrc_rule = CustomRule([self.rcc.get_command(), '@INFILE@', '-o', '@OUTFILE@'],
- '@BASENAME@.cpp', 'qresources', 'rc_compile',
- 'Compiling @INFILE@ with the rrc compiler')
+ rrc_rule = CustomRule([self.rcc.get_command(), '@INFILE@', '-o', '@OUTFILE@',
+ '${rcc_flags}'], '@BASENAME@.cpp','qresources',
+ 'rc_compile', 'Compiling @INFILE@ with the rrc compiler')
return [moc_rule, mocsrc_rule, ui_rule, rrc_rule]
def get_exe_flags(self):