aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/dependencyFinder/order_complex1.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/dependencyFinder/order_complex1.qbs')
-rw-r--r--tests/auto/dependencyFinder/order_complex1.qbs8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/dependencyFinder/order_complex1.qbs b/tests/auto/dependencyFinder/order_complex1.qbs
new file mode 100644
index 000000000..aba10cacf
--- /dev/null
+++ b/tests/auto/dependencyFinder/order_complex1.qbs
@@ -0,0 +1,8 @@
+Project {
+ bar: car + foo + def
+ foo: def
+ car: foo + abc + blub
+ abc: foo + blub
+ def: 12 + blub
+ blub: 24
+}