diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-06 19:56:38 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-04-06 19:56:38 +0300 |
commit | ac81594952501b2e7e7f2c59a972503437954f51 (patch) | |
tree | f3d0b3da031d7efaf263f384a49081b65fee8e69 /environment.py | |
parent | 4084e7213ec1c3a240d7d4509fec4b7d24f5f95d (diff) | |
download | meson-ac81594952501b2e7e7f2c59a972503437954f51.zip meson-ac81594952501b2e7e7f2c59a972503437954f51.tar.gz meson-ac81594952501b2e7e7f2c59a972503437954f51.tar.bz2 |
Added capability to compile sources files with moc, too.
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py index 7ff9930..a3317ca 100644 --- a/environment.py +++ b/environment.py @@ -72,7 +72,7 @@ class CCompiler(): return self.id def get_dependency_gen_flags(self, outtarget, outfile): - return ['-MMD', '-MT', outtarget, '-MF', outfile] + return ['-MMD', '-MQ', outtarget, '-MF', outfile] def get_depfile_suffix(self): return 'd' |