diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-16 17:35:05 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-10-30 06:46:08 -0700 |
commit | 6762d30c6a9b5da6a90f7c1eadc06d449dbd9a33 (patch) | |
tree | 894388c717c8a666d386e008c6092f05f553c3e3 /mesonbuild/build.py | |
parent | 43a8ef72fc35d6aa498735389639abd51b3d9585 (diff) | |
download | meson-6762d30c6a9b5da6a90f7c1eadc06d449dbd9a33.zip meson-6762d30c6a9b5da6a90f7c1eadc06d449dbd9a33.tar.gz meson-6762d30c6a9b5da6a90f7c1eadc06d449dbd9a33.tar.bz2 |
Exposes the install names of targets in introspection. Closes #829.
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r-- | mesonbuild/build.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |