target_configurations - List all configurations associated
with a target
configlist, tag
target_configurations( targetname )
function target_configurations0()
for k, v in pairs(list_targets()) do
print(string.format("target ( %s ) configurations : 0t:", v));
for l, m in pairs(target_configurations(v)) do
print("" .. m);
end
print("0);
end
end
function target_configurations0()
target_configurations(list_targets());
end