summaryrefslogtreecommitdiff
path: root/tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs')
-rw-r--r--tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs b/tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs
index af7e6ced6..501675c15 100644
--- a/tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs
+++ b/tests/auto/blackbox/testdata/protobuf-library-install/protobuf-library.qbs
@@ -1,6 +1,8 @@
+import qbs.Host
+
StaticLibrary {
condition: {
- var result = qbs.targetPlatform === qbs.hostPlatform;
+ var result = qbs.targetPlatform === Host.platform();
if (!result)
console.info("targetPlatform differs from hostPlatform");
return result && hasProtobuf;