aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/windows-msvc.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-06-24 15:18:55 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2013-06-24 18:00:11 +0200
commite9ddf75f2d3732bfc5fc3d8268e2490754c42c61 (patch)
tree5a5bd95109e348fda5d6629a373f22dd0972c12d /share/qbs/modules/cpp/windows-msvc.qbs
parentd0eafa6d03f3b0b54d05902507bf5883c0892ce5 (diff)
fix static library dependencies
Task-number: QBS-294 Change-Id: Ie285cb98db052176a563f52a187279b5dae4c1bf 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.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/cpp/windows-msvc.qbs b/share/qbs/modules/cpp/windows-msvc.qbs
index 5d22d6eff..4895d2ced 100644
--- a/share/qbs/modules/cpp/windows-msvc.qbs
+++ b/share/qbs/modules/cpp/windows-msvc.qbs
@@ -181,7 +181,7 @@ CppModule {
var lib = inputs.staticlibrary[i]
result.push(lib.fileName)
var impliedLibs = ModUtils.moduleProperties(lib, 'staticLibraries')
- result.concat(impliedLibs)
+ result = result.concat(impliedLibs);
}
return result
}