aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-07-09 14:54:13 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-07-10 10:47:44 +0200
commit3b50726352fd1b1c5fc5424856ccb9446c87a30f (patch)
tree41fc8c9f1d0158b60aca9ccdee978b4d041f5f1f /doc
parent89513bce4f2996be93bdb30b32a1ef844d9cec36 (diff)
prohibit duplicate source files in enabled groups
Having the same source files in more than one enabled group is considered an error. There's no proper way to define conflict resolution rules. Task-number: QBS-593 Change-Id: I93d25b7e3484ce3a4da4e10299e1a3bf10951ca2 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/qbs.qdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/qbs.qdoc b/doc/qbs.qdoc
index fb5865e59..e64e822e3 100644
--- a/doc/qbs.qdoc
+++ b/doc/qbs.qdoc
@@ -635,11 +635,11 @@
\code
Product {
Depends: "cpp"
- files: ["main.cpp"] // Gets the file tag "cpp" through a FileTagger item.
Group {
overrideTags: false // The overrideTags property defaults to true.
- files: ["main.cpp"]
- fileTags: ["foobar"] // Gets the file tag "foobar" in addition to "cpp".
+ fileTags: ["foobar"]
+ files: ["main.cpp"] // Gets the file tag "cpp" through a FileTagger item and
+ // "foobar" from this group's fileTags property.
}
// ...
}