aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs')
-rw-r--r--tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs b/tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs
index 049ade899..44d8013b9 100644
--- a/tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs
+++ b/tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs
@@ -25,6 +25,14 @@ Project {
condition: tcProbe.found
name:"app"
Depends { name: "lib" }
+ Depends { name: "staticlib" }
files: ["main.cpp"]
}
+ StaticLibrary {
+ condition: tcProbe.found
+ name: "staticlib"
+ Depends { name: "lib" }
+ Depends { name: "cpp" }
+ files: "staticlib.cpp"
+ }
}