aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2019-07-11 00:34:40 +0300
committerGitHub <noreply@github.com>2019-07-11 00:34:40 +0300
commit19cda6b7c96cc3a63796549764261306e1db94b4 (patch)
tree6d47683818b05b2eee6a9f9dfb92c92463ac26cc /mesonbuild/ast/interpreter.py
parent30e42009c03cbb53e3462e1c4ee29af666474742 (diff)
parentd8b3af00aca3a2825d199367d588a4b24e5ab779 (diff)
downloadmeson-19cda6b7c96cc3a63796549764261306e1db94b4.zip
meson-19cda6b7c96cc3a63796549764261306e1db94b4.tar.gz
meson-19cda6b7c96cc3a63796549764261306e1db94b4.tar.bz2
Merge pull request #5606 from xclaesse/alias_target
Add alias_target() function
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 5354710..0e490ab 100644
--- a/mesonbuild/ast/interpreter.py
+++ b/mesonbuild/ast/interpreter.py
@@ -117,6 +117,7 @@ class AstInterpreter(interpreterbase.InterpreterBase):
'add_test_setup': self.func_do_nothing,
'find_library': self.func_do_nothing,
'subdir_done': self.func_do_nothing,
+ 'alias_target': self.func_do_nothing,
})
def func_do_nothing(self, node, args, kwargs):