[Qbs] How to make 'cpp.link: false' part of the Export item within custom item?

2017-10-21 Thread resurrection
Having a custom Item I would like to disable linking to the dynamic library for all those that depend on it since it is a plugin just like what Jake talks about in the 1.9 release blog . Qbs generates the warning that cpp.link property was no

Re: [Qbs] Add extra tags to intermediate artifacts

2017-10-21 Thread Jake Petroules
The release cycle of Qbs has nothing to do with the release cycle of Qt. Qbs 1.10 will be released around the same time as Qt Creator 4.5. > On Oct 21, 2017, at 1:14 PM, Павел Лысенко via Qbs wrote: > > Thank you, it works with 1.10 > When it gonna be released? By Qt 5.10 release or earlier? >

Re: [Qbs] Add extra tags to intermediate artifacts

2017-10-21 Thread Павел Лысенко via Qbs
Thank you, it works with 1.10 When it gonna be released? By Qt 5.10 release or earlier? Regards Pavel > >> I am trying to implement custom deploy module >> In that module I have created a rule that consumes files tagged ?deployable? >> and produces files tagged ?deployPackage? >> Also I have a

Re: [Qbs] Recursive file installation and preserve the folder structure

2017-10-21 Thread Epting, Thomas
Hi Ben, You have to use the qbs.installSourceBase property in such cases. Group { qbs.install: true qbs.installDir: "path/to/target/target" qbs.installSourceBase: "path/to/source" files : [ "path/to/source/**" ] } Best regards, Thomas Von: Qbs [mailto:qbs-bounces+thomas.epting=s

[Qbs] Recursive file installation and preserve the folder structure

2017-10-21 Thread Ben Lau
Hello, I would like to write to QBS file to install a folder of files to a target directory recursively. That is the folder structure . ├── A │ ├── 1 │ │ └── A1.txt │ └── A.txt └── installer.qbs And that is the qbs file: import qbs import qbs.Environment Project { Product {