qbs project files: Qualify access to product properties in Export items.

Such items behave "module-like" and one should therefore not count on
them having access to the scope of their parent item.

Change-Id: I8a323ae31218c6b1ee721ffaa65c04ccf08943bc
Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
This commit is contained in:
Christian Kandeler
2015-06-30 14:17:31 +02:00
parent 5a579e72f5
commit 0b31635a32
2 changed files with 2 additions and 2 deletions

View File

@@ -27,6 +27,6 @@ QtcProduct {
Export { Export {
Depends { name: "cpp" } Depends { name: "cpp" }
cpp.includePaths: [libIncludeBase] cpp.includePaths: [product.libIncludeBase]
} }
} }

View File

@@ -52,6 +52,6 @@ QtcProduct {
Export { Export {
Depends { name: "ExtensionSystem" } Depends { name: "ExtensionSystem" }
Depends { name: "cpp" } Depends { name: "cpp" }
cpp.includePaths: [pluginIncludeBase] cpp.includePaths: [product.pluginIncludeBase]
} }
} }