From 0df73e4c2f540ac404025cfa979ff7dea2b18a03 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 11 Jun 2014 23:19:00 +0300 Subject: Introspect script understands runtargets. --- mesonintrospect.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'mesonintrospect.py') diff --git a/mesonintrospect.py b/mesonintrospect.py index b5bc9f8..063538d 100755 --- a/mesonintrospect.py +++ b/mesonintrospect.py @@ -52,6 +52,8 @@ def list_targets(coredata, builddata): typename = 'static library' elif isinstance(target, build.CustomTarget): typename = 'custom' + elif isinstance(target, build.RunTarget): + typename = 'run' else: typename = 'unknown' t['type'] = typename -- cgit v1.1