aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/Library.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-02-24 16:05:45 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-02-24 16:18:39 +0100
commit43962ad2e0b14e853e0561f12b55a087f4be8753 (patch)
tree1ddb166247055da21adc4571e6d91c3c5702955d /src/lib/Library.qbs
parentde8682b7d4fccdef5c93759336e51ab73ecd5021 (diff)
Don't treat warnings as errors.
It's too much hassle if e.g. the warnings come from header files. Task-number: QTCREATORBUG-11431 Change-Id: I12af8b4a2bc525f2d7c415659e9a51f8e92790e6 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'src/lib/Library.qbs')
-rw-r--r--src/lib/Library.qbs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/Library.qbs b/src/lib/Library.qbs
index 12809460f..8fea75550 100644
--- a/src/lib/Library.qbs
+++ b/src/lib/Library.qbs
@@ -8,7 +8,6 @@ Product {
type: Qt.core.staticBuild ? "staticlibrary" : "dynamiclibrary"
targetName: (qbs.enableDebugCode && qbs.targetOS.contains("windows")) ? (name + 'd') : name
destinationDirectory: qbs.targetOS.contains("windows") ? "bin" : "lib"
- cpp.treatWarningsAsErrors: true
cpp.defines: base.concat(type == "staticlibrary" ? ["QBS_STATIC_LIB"] : ["QBS_LIBRARY"])
cpp.installNamePrefix: "@rpath/"
property string headerInstallPrefix: "/include/qbs"