aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/language/testdata/erroneous/dependency_cycle2.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/language/testdata/erroneous/dependency_cycle2.qbs')
-rw-r--r--tests/auto/language/testdata/erroneous/dependency_cycle2.qbs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/language/testdata/erroneous/dependency_cycle2.qbs b/tests/auto/language/testdata/erroneous/dependency_cycle2.qbs
index 335355480..4aff0b75c 100644
--- a/tests/auto/language/testdata/erroneous/dependency_cycle2.qbs
+++ b/tests/auto/language/testdata/erroneous/dependency_cycle2.qbs
@@ -1,20 +1,20 @@
Project {
- CppApplication {
+ Product {
name: "A"
Depends { name: "B" }
files: ["main.cpp"]
}
- CppApplication {
+ Product {
name: "B"
Depends { name: "C" }
files: ["main.cpp"]
}
- CppApplication {
+ Product {
name: "C"
Depends { name: "A" }
files: ["main.cpp"]
}
- CppApplication {
+ Product {
name: "D"
files: ["main.cpp"]
}