summaryrefslogtreecommitdiff
path: root/share/qbs/modules/cpp/windows-mingw.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-09-30 16:47:17 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-10-01 14:24:18 +0200
commitb04a049c13c543e786120764cd9b6f78cbd7b86a (patch)
tree8fe37e45ce4ef11114e09eee2c6f284e66d79b81 /share/qbs/modules/cpp/windows-mingw.qbs
parent366347c5beda3309c2988106f680ac9293f70be6 (diff)
downloadqbs-b04a049c13c543e786120764cd9b6f78cbd7b86a.tar.gz
introduce cpp.supportedStaticLibrarySuffixes
The MinGW linker supports .a and .lib files as input. Therefore we need to maintain a list of supported lib suffixes. Task-number: QBS-376 Change-Id: I2e9c3b424478a9bcf1a06df6e532517b31da0bef Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/qbs/modules/cpp/windows-mingw.qbs')
-rw-r--r--share/qbs/modules/cpp/windows-mingw.qbs1
1 files changed, 1 insertions, 0 deletions
diff --git a/share/qbs/modules/cpp/windows-mingw.qbs b/share/qbs/modules/cpp/windows-mingw.qbs
index 1c563478e..024f887ab 100644
--- a/share/qbs/modules/cpp/windows-mingw.qbs
+++ b/share/qbs/modules/cpp/windows-mingw.qbs
@@ -9,6 +9,7 @@ GenericGCC {
dynamicLibraryPrefix: ""
executablePrefix: ""
staticLibrarySuffix: ".a"
+ supportedStaticLibrarySuffixes: [".a", ".lib"]
dynamicLibrarySuffix: ".dll"
executableSuffix: ".exe"
windowsApiCharacterSet: "unicode"