aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/probes-and-multiplexing.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/language/testdata/probes-and-multiplexing.qbs')
-rw-r--r--tests/auto/language/testdata/probes-and-multiplexing.qbs15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/auto/language/testdata/probes-and-multiplexing.qbs b/tests/auto/language/testdata/probes-and-multiplexing.qbs
new file mode 100644
index 000000000..38de08aee
--- /dev/null
+++ b/tests/auto/language/testdata/probes-and-multiplexing.qbs
@@ -0,0 +1,15 @@
+Product {
+ multiplexByQbsProperties: "architectures"
+ qbs.architectures: ["x86", "x86_64", "arm"]
+ property string archFromProbe: theProbe.archOut
+ Probe {
+ id: theProbe
+ property string archIn: qbs.architecture
+ property string archOut
+ configure: { archOut = archIn; }
+ }
+ Group {
+ name: "theGroup"
+ qbs.sysroot: "/" + theProbe.archOut
+ }
+}