diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2016-08-04 15:41:07 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2016-08-05 07:12:20 +0000 |
commit | d004203b13fa17d1258ee62d5eb4f681adf32398 (patch) | |
tree | fa8838b7cd6adb229c41c870751a4a6f5253d599 | |
parent | 612dd963078e1e9e0b5fee79969cda871a949578 (diff) | |
download | qt-creator-d004203b13fa17d1258ee62d5eb4f681adf32398.tar.gz |
qbs build: Fix warnings on Windows
Change-Id: Ic62200d30be054128fd810ae85e7b8eb1900be89
Reviewed-by: Jake Petroules <jake.petroules@qt.io>
-rw-r--r-- | qbs/imports/QtcPlugin.qbs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qbs/imports/QtcPlugin.qbs b/qbs/imports/QtcPlugin.qbs index 8d68c234fe..73f2505d68 100644 --- a/qbs/imports/QtcPlugin.qbs +++ b/qbs/imports/QtcPlugin.qbs @@ -25,7 +25,10 @@ QtcProduct { name: "Qt.test" } - cpp.internalVersion: "" + Properties { + condition: qbs.targetOS.contains("unix") + cpp.internalVersion: "" + } cpp.defines: base.concat([name.toUpperCase() + "_LIBRARY"]) cpp.sonamePrefix: qbs.targetOS.contains("macos") ? "@rpath" |