Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
1.10.1
-
None
Description
The following project
// CondBase.qbs Application { name: 'conditionaldepends_base' property bool someProp: false Depends { condition: someProp name: 'dummy' } } // app.qbs CondBase { name: 'conditionaldepends_derived_true_from_module' Depends { name: "dummy2" } someProp: dummy2.someTrueProp }
produces the error
Can't find variable: dummy2
It should be possible to override someProp in app.qbs and use a module property.
The error vanishes if I put
Depends { name: "dummy2" }
into the base item.
Attachments
Issue Links
- relates to
-
QBS-1338 Product.condition depending on module values might fail
- Closed