aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2017-05-12 12:05:09 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2017-05-12 11:26:54 +0000
commit130897199664f52d737ad4f3e24df19ccfbdee93 (patch)
treea3efc5f0e0f901b99fe096b0c601d48ed222c4f1
parent00ddad87b9425e61965586eadf30dc040003722a (diff)
Qt templates: Do not set cpp.runtimeLibrary in QtModule.qbs
This is a scalar value. Setting it once in core.qbs is enough. Change-Id: I5856c447b8c72e2504f4d6e06a9e0199bba66751 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
-rw-r--r--src/lib/qtprofilesetup/templates/QtModule.qbs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/qtprofilesetup/templates/QtModule.qbs b/src/lib/qtprofilesetup/templates/QtModule.qbs
index c982bbb80..07618bf20 100644
--- a/src/lib/qtprofilesetup/templates/QtModule.qbs
+++ b/src/lib/qtprofilesetup/templates/QtModule.qbs
@@ -52,8 +52,5 @@ Module {
cpp.frameworks: mFrameworks.concat(!isStaticLibrary && Qt.core.frameworkBuild
? [libNameForLinker] : [])
cpp.frameworkPaths: mFrameworkPaths
- cpp.runtimeLibrary: qbs.toolchain.contains("msvc")
- ? Qt.core.config.contains("static_runtime") ? "static" : "dynamic"
- : original
}
}