From 6e865a233099a00e9ea08f6a2f911ede3c7b4215 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Wed, 11 Dec 2019 16:19:10 -0500 Subject: Add a summary() function for configuration summarization Based on patch from Dylan Baker. Fixes #757 --- mesonbuild/ast/interpreter.py | 1 + 1 file changed, 1 insertion(+) (limited to 'mesonbuild/ast/interpreter.py') 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): -- cgit v1.1