[QBS] Multiply Artifacts in the rule

Christian Kandeler christian.kandeler at digia.com
Mon Oct 28 10:17:56 CET 2013


On 10/28/2013 10:04 AM, Pavel Fischer wrote:
>                   for (var out in outputs) {
>                       print("Output: " + out.fileName);
>                   }

That's not how the "for" statement works in JavaScript. Instead, write:
     print("Output: " + outputs[out].fileName);


Christian




More information about the Qbs mailing list