aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorYonggang Luo <luoyonggang@gmail.com>2013-10-09 14:55:40 +0800
committerJoerg Bornemann <joerg.bornemann@digia.com>2013-10-18 08:45:54 +0200
commit7c7bf9e33236f2756ac7e0e713c23c51f43d9502 (patch)
tree45bca83686fbb2da8d20b7293d0da6743d700dc4 /doc
parent87ae1e7dc628f560c601741ef6df167821ec10ab (diff)
fix incorrect includePaths evaluation demo in documentation of properties.qdoc
Change-Id: I27273491d8d5d70b7260eed0552c32257d7e84f2 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/items/properties.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/reference/items/properties.qdoc b/doc/reference/items/properties.qdoc
index 32c20b7e3..ba3f0ae06 100644
--- a/doc/reference/items/properties.qdoc
+++ b/doc/reference/items/properties.qdoc
@@ -82,9 +82,9 @@
}
cpp.includePaths: {
if (qbs.targetOS.contains("windows"))
- return ["ON_WINDOWS"];
+ return ["myWindowsIncludes"];
if (qbs.targetOS.contains("linux"))
- return ["ON_LINUX"];
+ return ["myLinuxIncludes"];
return undefined;
}
}