aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/windows-mingw.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/cpp/windows-mingw.qbs')
-rw-r--r--share/qbs/modules/cpp/windows-mingw.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/cpp/windows-mingw.qbs b/share/qbs/modules/cpp/windows-mingw.qbs
index 72172328e..5e6fb40ae 100644
--- a/share/qbs/modules/cpp/windows-mingw.qbs
+++ b/share/qbs/modules/cpp/windows-mingw.qbs
@@ -68,9 +68,9 @@ GenericGCC {
args.push(systemIncludePaths[i]);
}
- args = args.concat(['-i', input.fileName, '-o', output.fileName]);
+ args = args.concat(['-i', input.filePath, '-o', output.filePath]);
var cmd = new Command(ModUtils.moduleProperty(product, "windresPath"), args);
- cmd.description = 'compiling ' + FileInfo.fileName(input.fileName);
+ cmd.description = 'compiling ' + FileInfo.fileName(input.filePath);
cmd.highlight = 'compiler';
return cmd;
}