aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs')
-rw-r--r--tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs b/tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs
index a3327454d..44d0cec37 100644
--- a/tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs
+++ b/tests/auto/blackbox/testdata/loadablemodule/loadablemodule.qbs
@@ -3,8 +3,10 @@ import qbs
Project {
LoadableModule {
Depends { name: "cpp" }
- Depends { name: "bundle" }
- bundle.isBundle: false
+ Properties {
+ condition: qbs.targetOS.contains("darwin")
+ bundle.isBundle: false
+ }
name: "CoolPlugIn"
files: ["exported.cpp", "exported.h"]
@@ -17,8 +19,7 @@ Project {
CppApplication {
Depends { name: "cpp" }
Depends { name: "CoolPlugIn"; cpp.link: false }
- Depends { name: "bundle" }
- bundle.isBundle: false
+ consoleApplication: true
name: "CoolApp"
files: ["main.cpp"]