aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2013-04-10 17:09:08 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-04-17 14:17:19 +0200
commit091dc267d3526e7b3d8e05b32a2506aea114f778 (patch)
tree1f944d36a0f192a6829f1917d286ec71a3d18dea /tests/manual
parent6682429d58c279399749a73ad6356be24adc8136 (diff)
make Depends.name and Depends.submodules case sensitive
Also rename modules/qt to modules/Qt and use this form consequently. Task-number: QBS-254 Change-Id: I2e994f2bc5f93d4f887e14ac224ab360c54ad029 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/groupTaggerConflict/test.qbs4
-rw-r--r--tests/manual/objc/objc.qbs2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/manual/groupTaggerConflict/test.qbs b/tests/manual/groupTaggerConflict/test.qbs
index 0941f2ade..ebdabd492 100644
--- a/tests/manual/groupTaggerConflict/test.qbs
+++ b/tests/manual/groupTaggerConflict/test.qbs
@@ -14,14 +14,14 @@ Project {
]
Group {
- condition: qt.core.versionMajor === 4
+ condition: Qt.core.versionMajor === 4
overrideTags: false
qbs.installDir: "include/bar"
fileTags: ["install"]
files: ["src/bar_qt4.h"]
}
Group {
- condition: qt.core.versionMajor === 5
+ condition: Qt.core.versionMajor === 5
overrideTags: false
qbs.installDir: "include/bar"
fileTags: ["install"]
diff --git a/tests/manual/objc/objc.qbs b/tests/manual/objc/objc.qbs
index 2b8ded1d6..b19b2a801 100644
--- a/tests/manual/objc/objc.qbs
+++ b/tests/manual/objc/objc.qbs
@@ -3,7 +3,7 @@ import qbs 1.0
Project {
CppApplication {
condition: qbs.targetOS === "mac"
- Depends { name: "qt.core" }
+ Depends { name: "Qt.core" }
files: "main.mm"
cpp.frameworks: [ "Foundation" ]
}