On Thu, 8 Jun 2017 11:51:55 +0200
Stephan Gatzka <[email protected]> wrote:

> I have a problem to set a property in a product from the qbs command line:
> Product {
>    name: "unitTestRunner"
>    property bool showCoverageData: false
> 
>    ...
> 
>    Rule {
>      ...
>      prepare: {
>        if (product.showCoverageData) {
>        }
>      }
>    }
> }
> 
> If I run:
> qbs unitTestRunner.showCoverageData:true
> the if branch is never entered.

Yes, we "namespaced" the command-line property overrides, because there was 
potential for ambiguities, particularly between projects and products of the 
same name.
Your example should now read:

qbs products.unitTestRunner.showCoverageData:true

The other possible prefixes are "projects" and "modules".
We should probably emit a warning if the prefix is missing; I'll make a note.


Christian

_______________________________________________
Qbs mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/qbs

Reply via email to