Introspect script understands runtargets.

pull/15/head
Jussi Pakkanen 11 years ago
parent 73ca870bef
commit 0df73e4c2f
  1. 2
      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

Loading…
Cancel
Save