diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-06 23:55:17 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-06 23:55:17 +0300 |
commit | 1d36109002cc5ce79b1627cceae7bc3a1e28e113 (patch) | |
tree | bb086ccf8c2fda3feb185ceb133ecbe47732cc30 /dependencies.py | |
parent | e2e95c7bf2920a7a515e19926534f9b81338e736 (diff) | |
download | meson-1d36109002cc5ce79b1627cceae7bc3a1e28e113.zip meson-1d36109002cc5ce79b1627cceae7bc3a1e28e113.tar.gz meson-1d36109002cc5ce79b1627cceae7bc3a1e28e113.tar.bz2 |
Can have multiple resource files in Qt5.
Diffstat (limited to 'dependencies.py')
-rw-r--r-- | dependencies.py | 6 |
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): |