aboutsummaryrefslogtreecommitdiffstats
path: root/doc/reference/items/rule.qdoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/reference/items/rule.qdoc')
-rw-r--r--doc/reference/items/rule.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/reference/items/rule.qdoc b/doc/reference/items/rule.qdoc
index 05fc22643..91dcc6137 100644
--- a/doc/reference/items/rule.qdoc
+++ b/doc/reference/items/rule.qdoc
@@ -74,12 +74,12 @@
for (i in defines)
args.push('-D' + defines[i]);
args.push('-c');
- args.push(input.fileName);
+ args.push(input.filePath);
args.push('-o');
- args.push(output.fileName);
+ args.push(output.filePath);
var compilerPath = ModUtils.moduleProperty(product, 'compilerPath');
var cmd = new Command(compilerPath, args);
- cmd.description = 'compiling ' + FileInfo.fileName(input.fileName);
+ cmd.description = 'compiling ' + FileInfo.fileName(input.filePath);
cmd.highlight = 'compiler';
return cmd;
}