aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-12-18 01:17:27 +0200
committerGitHub <noreply@github.com>2019-12-18 01:17:27 +0200
commit3122bac28a1e047da28b0190b8a0610cc26028dc (patch)
treeae4d0edb64d53f8e729bc586a6038286cedb215b /mesonbuild/ast/interpreter.py
parenta2a9611e1de9313770cc2ef8d6a363da6d8eb6dc (diff)
parenta4bb0928e30ac6464a8ef5003df43233d61d6bdf (diff)
downloadmeson-3122bac28a1e047da28b0190b8a0610cc26028dc.zip
meson-3122bac28a1e047da28b0190b8a0610cc26028dc.tar.gz
meson-3122bac28a1e047da28b0190b8a0610cc26028dc.tar.bz2
Merge pull request #4649 from dcbaker/summary-function
Add a summary() function for configuration summarization
Diffstat (limited to 'mesonbuild/ast/interpreter.py')
-rw-r--r--mesonbuild/ast/interpreter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py
index 847f817..ebdde3f 100644
--- a/mesonbuild/ast/interpreter.py
+++ b/mesonbuild/ast/interpreter.py
@@ -119,6 +119,7 @@ class AstInterpreter(interpreterbase.InterpreterBase):
'find_library': self.func_do_nothing,
'subdir_done': self.func_do_nothing,
'alias_target': self.func_do_nothing,
+ 'summary': self.func_do_nothing,
})
def func_do_nothing(self, node, args, kwargs):