diff options
author | Salamandar <felix@piedallu.me> | 2018-05-31 10:29:11 +0200 |
---|---|---|
committer | Salamandar <felix@piedallu.me> | 2018-06-01 14:23:24 +0200 |
commit | 69230ce4ef3152cf2675864a1a2c1cfbbd60a604 (patch) | |
tree | 9315c3dc69709c92f11f724c347a57082277cff0 /mesonbuild/interpreter.py | |
parent | 00c4cf7d45c79be871295d0d77c42c92537ed387 (diff) | |
download | meson-69230ce4ef3152cf2675864a1a2c1cfbbd60a604.zip meson-69230ce4ef3152cf2675864a1a2c1cfbbd60a604.tar.gz meson-69230ce4ef3152cf2675864a1a2c1cfbbd60a604.tar.bz2 |
print features reports after run
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 0da66af..ce49394 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -3450,6 +3450,8 @@ different subdirectory. def run(self): super().run() mlog.log('Build targets in project:', mlog.bold(str(len(self.build.targets)))) + FeatureNew.called_features_report() + FeatureDeprecated.called_features_report() def evaluate_subproject_info(self, path_from_source_root, subproject_dirname): depth = 0 |