Introspect script understands runtargets.
This commit is contained in:
parent
73ca870bef
commit
0df73e4c2f
|
@ -52,6 +52,8 @@ def list_targets(coredata, builddata):
|
||||||
typename = 'static library'
|
typename = 'static library'
|
||||||
elif isinstance(target, build.CustomTarget):
|
elif isinstance(target, build.CustomTarget):
|
||||||
typename = 'custom'
|
typename = 'custom'
|
||||||
|
elif isinstance(target, build.RunTarget):
|
||||||
|
typename = 'run'
|
||||||
else:
|
else:
|
||||||
typename = 'unknown'
|
typename = 'unknown'
|
||||||
t['type'] = typename
|
t['type'] = typename
|
||||||
|
|
Loading…
Reference in New Issue