aboutsummaryrefslogtreecommitdiffstats
path: root/doc/doc.qbs
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 /doc/doc.qbs
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 'doc/doc.qbs')
-rw-r--r--doc/doc.qbs8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/doc.qbs b/doc/doc.qbs
index a4dcc9fd8..9be6673b8 100644
--- a/doc/doc.qbs
+++ b/doc/doc.qbs
@@ -3,7 +3,7 @@ import qbs 1.0
Product {
name: "documentation"
type: "qch"
- Depends { name: "qt.core" }
+ Depends { name: "Qt.core" }
files: [
"qbs.qdoc",
@@ -12,13 +12,13 @@ Product {
]
Group {
name: "main qdocconf file"
- files: qt.core.versionMajor >= 5 ? "qbs.qdocconf" : "qbs-qt4.qdocconf"
+ files: Qt.core.versionMajor >= 5 ? "qbs.qdocconf" : "qbs-qt4.qdocconf"
fileTags: "qdocconf-main"
}
property string versionTag: project.version.replace(/\.|-/g, "")
- qt.core.qdocQhpFileName: "qbs.qhp"
- qt.core.qdocEnvironment: [
+ Qt.core.qdocQhpFileName: "qbs.qhp"
+ Qt.core.qdocEnvironment: [
"QBS_VERSION=" + project.version,
"SRCDIR=.",
"QBS_VERSION_TAG=" + versionTag