Details
Description
The localization files (*.wxl) which is added to "files" property is incorrect processing.
Got an error:
C:\Qt\qtcreator-3.1.0\share\qtcreator\qbs\share\qbs\modules\wix\WiXModule.qbs:359: error: evaluating prepare script: TypeError: Result of expression 'outputs.wxl' [undefined] is not an object.
Seems that in this code:
for (i in inputs.wxl) { args.push("-loc"); args.push(outputs.wxl[i].filePath); }
the "outputs.wxl[i].filePath" need to replace to "inputs.wxl[i].filePath"