Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
Hi, The build of the package (apk or aab) is done in the aggregate. So adding a profile can only impact the multiplexed targets. The multiplex targets are built the same way for apk and aab. It's the packaging (in the aggregate) that differs. Hence the multiplexing of the aggregate in my patch...

Re: [Qbs] building android aab package help

2020-06-07 Thread Иван Комиссаров
Interesting, I do not get that error. Maybe Christian knows better why this could happen? The following example works for me on Mac: CppApplication { name: qbs.profile consoleApplication: true Profile { name: "a" baseProfile: project.profile cpp.defines: 'MAGI

Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
Hi, Looking into that... So I have a simple example like that: Application { Profile { name: "a" baseProfile: project.profile } Profile { name: "b" baseProfile: project.profile } qbs.profiles: ["a", "b"] files: [ "main.cpp" ] } I get this

Re: [Qbs] Evaluation of Conditional Depends

2020-06-07 Thread Richard Weickelt
Christian Gudrian wrote on 7. June 2020 10:48 (GMT +02:00): > > I’ve put a simple example project on GitHub: > https://github.com/cgudrian/QbsConfigurationDemo > . > > I am trying to implement basic Qbs support for the RT operating system > Ch

Re: [Qbs] building android aab package help

2020-06-07 Thread Иван Комиссаров
Hello, Raphael! I’ve seen your new patch and it looks really interesting. So, for now, you have 2 separate patches for the AAB support, right? [0] https://codereview.qt-project.org/c/qbs/qbs/+/303358 [1] https://codereview.qt-project.org/c/q

Re: [Qbs] Evaluation of Conditional Depends

2020-06-07 Thread Christian Gudrian
Hello! > Could you clarify the relationship between ModuleA and ModuleB? Maybe post > some minimal example code. I’ve put a simple example project on GitHub: https://github.com/cgudrian/QbsConfigurationDemo . I am trying to implement basic Qbs