From 67f05790924646fe3623976f7794e2e7c97e3c3a Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 16 May 2014 14:24:29 +0200 Subject: use {input|output}.fileName where appropriate Change-Id: I793210ba6eeeb3a15e78282e14b8e5ad6459c078 Reviewed-by: Jake Petroules Reviewed-by: Christian Kandeler --- share/qbs/modules/cpp/windows-msvc.qbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share/qbs/modules/cpp/windows-msvc.qbs') 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. -- cgit v1.2.3