diff options
author | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2015-07-24 15:16:37 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@theqtcompany.com> | 2015-07-28 08:52:45 +0000 |
commit | 9ef620911514287ed7fd84604f2b8c95295fffe8 (patch) | |
tree | bd6f9a57c4494d0cee8655661f83bf6d42bbf6d0 /examples/app-and-lib | |
parent | f151e663ad2fcb554f1c8737724080c757f6108e (diff) | |
download | qbs-9ef620911514287ed7fd84604f2b8c95295fffe8.tar.gz |
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/app-and-lib')
-rw-r--r-- | examples/app-and-lib/lib/lib.qbs | 2 |
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] } } |