aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-24 15:16:37 +0200
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-07-28 08:52:45 +0000
commit9ef620911514287ed7fd84604f2b8c95295fffe8 (patch)
treebd6f9a57c4494d0cee8655661f83bf6d42bbf6d0 /examples
parentf151e663ad2fcb554f1c8737724080c757f6108e (diff)
Don't advertise using relative paths in export items.
While we do support this for compatibility reasons, let's not encourage it. Change-Id: I4856b021b2e309e35974af68fe4dc10954d3d451 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/app-and-lib/lib/lib.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/app-and-lib/lib/lib.qbs b/examples/app-and-lib/lib/lib.qbs
index e68335d1c..55417e0ef 100644
--- a/examples/app-and-lib/lib/lib.qbs
+++ b/examples/app-and-lib/lib/lib.qbs
@@ -49,7 +49,7 @@ Product {
Export {
Depends { name: "cpp" }
- cpp.includePaths: ["."]
+ cpp.includePaths: [product.sourceDirectory]
}
}