aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/windows-msvc.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-05-16 14:24:29 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-05-20 13:54:01 +0200
commit67f05790924646fe3623976f7794e2e7c97e3c3a (patch)
tree2d751fa3ebbc98194250080b946035b4ae37d984 /share/qbs/modules/cpp/windows-msvc.qbs
parentdb6d4dbe277469b5b39413ca51b9067559566b28 (diff)
use {input|output}.fileName where appropriate
Change-Id: I793210ba6eeeb3a15e78282e14b8e5ad6459c078 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/qbs/modules/cpp/windows-msvc.qbs')
-rw-r--r--share/qbs/modules/cpp/windows-msvc.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/cpp/windows-msvc.qbs b/share/qbs/modules/cpp/windows-msvc.qbs
index 96277066d..2af9065a6 100644
--- a/share/qbs/modules/cpp/windows-msvc.qbs
+++ b/share/qbs/modules/cpp/windows-msvc.qbs
@@ -183,7 +183,7 @@ CppModule {
args.push(fileName)
}
var cmd = new Command("lib.exe", args);
- cmd.description = 'creating ' + FileInfo.fileName(output.filePath)
+ cmd.description = 'creating ' + output.fileName;
cmd.highlight = 'linker';
cmd.workingDirectory = FileInfo.path(output.filePath)
cmd.responseFileUsagePrefix = '@';
@@ -230,7 +230,7 @@ CppModule {
args = args.concat(['/fo', output.filePath, input.filePath]);
var cmd = new Command('rc', args);
- cmd.description = 'compiling ' + FileInfo.fileName(input.filePath);
+ cmd.description = 'compiling ' + input.fileName;
cmd.highlight = 'compiler';
// Remove the first two lines of stdout. That's the logo.