aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/smart-relinking
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/blackbox/testdata/smart-relinking')
-rw-r--r--tests/auto/blackbox/testdata/smart-relinking/smart-relinking.qbs8
-rw-r--r--tests/auto/blackbox/testdata/smart-relinking/staticlib.cpp1
2 files changed, 9 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"
+ }
}
diff --git a/tests/auto/blackbox/testdata/smart-relinking/staticlib.cpp b/tests/auto/blackbox/testdata/smart-relinking/staticlib.cpp
new file mode 100644
index 000000000..24fd8c6e9
--- /dev/null
+++ b/tests/auto/blackbox/testdata/smart-relinking/staticlib.cpp
@@ -0,0 +1 @@
+static void myFunc() {}