From 6762d30c6a9b5da6a90f7c1eadc06d449dbd9a33 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 16 Oct 2016 17:35:05 +0300 Subject: Exposes the install names of targets in introspection. Closes #829. --- mesonbuild/build.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mesonbuild/build.py') diff --git a/mesonbuild/build.py b/mesonbuild/build.py index 1d687d8..c3867e0 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1267,6 +1267,9 @@ class CustomTarget: def get_outputs(self): return self.output + def get_filename(self): + return self.output[0] + def get_sources(self): return self.sources -- cgit v1.1