aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index efe58f8..585a8d3 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1314,6 +1314,10 @@ class Executable(BuildTarget):
# Only linkwithable if using export_dynamic
self.is_linkwithable = self.export_dynamic
+ def description(self):
+ '''Human friendly description of the executable'''
+ return self.name
+
def type_suffix(self):
return "@exe"