Re: [Qbs] passing values for stringList properties on commandline?

2023-06-09 Thread Heiko Nardmann
Thx a lot!!! /Kind regards,/   Heiko *From:* Richard Weickelt [mailto:rich...@weickelt.de] *Sent:* Friday, June 9, 2023 at 10:28 AM *To:* Heiko Nardmann; qbs@qt-project.org *Subject:* [Qbs] passing values for stringList

Re: [Qbs] passing values for stringList properties on commandline?

2023-06-09 Thread Christian Kandeler via Qbs
On 6/9/23 10:15, Heiko Nardmann wrote: Hi together, I'm currently analyzing the usage of ccache and would like to pass "-v" to ccache. Which means that I have to change    modules.cpp.compilerWrapper:ccache to sth like    modules.cpp.compilerWrapper:'[ccache,-v]' which does not work.

Re: [Qbs] passing values for stringList properties on commandline?

2023-06-09 Thread Richard Weickelt
Hi, So what is the correct syntax on the commandline for passing values for stringList properties? check this out: https://qbs.io/docs/language-introduction/#overriding-property-values-from-the-command-line Richard ___ Qbs mailing list

[Qbs] passing values for stringList properties on commandline?

2023-06-09 Thread Heiko Nardmann
Hi together, I'm currently analyzing the usage of ccache and would like to pass "-v" to ccache. Which means that I have to change modules.cpp.compilerWrapper:ccache to sth like modules.cpp.compilerWrapper:'[ccache,-v]' which does not work. So what is the correct syntax on the