[Qbs] Donation to QBS developers/maintainers/contributes

2019-05-14 Thread Алексей Скородумов
Hi, Is it hard to make "donate" button on "QBS site" as a part of "transition to community"? I can't contribute time right now, but would like to support the project. -- Best regards, Aleksei Skorodumov ___ Qbs mailing list

[Qbs] QBS-1401

2018-12-12 Thread Алексей Скородумов
Hi Christian Can't comment on the bug page, so will explain here. "*qbs config*" has been replaced with "*qbs-config*" (NOTE: space vs dash). Hope this helps. -- Best regards, Aleksei Skorodumov ___ Qbs mailing list

[Qbs] ERROR: Project file 'foo.qbs' has invalid type.

2018-10-09 Thread Алексей Скородумов
Hi qbs-folks, I got the following error with debian:experimental Docker image and qbs 1.11.1 and 1.12.1: ERROR: Project file 'foo.qbs' has invalid type. The file is here and everything works fine outside of debian:experimental. The code in qbs/src/lib/corelib/language/loader.cpp:191 looks Ok,

Re: [Qbs] Building more than one binary from the same sources with multiplexing

2018-09-04 Thread Алексей Скородумов
Hi Christian and thank you for the help! Could you please clarify a bit more. On Tue, Sep 4, 2018 at 4:14 PM Christian Kandeler wrote: > On Tue, 4 Sep 2018 15:53:59 +0200 > Алексей Скородумов <2350...@gmail.com> wrote: > > > I would like to build several binaries

[Qbs] Building more than one binary from the same sources with multiplexing

2018-09-04 Thread Алексей Скородумов
Hi, I would like to build several binaries from the same sources with different compiler settings (defines). Is this a correct way to go: import qbs CppApplication { name: "foo-bar" multiplexByQbsProperties: ["profiles"] Profile { name: "foo" cpp.defines: ["FOO"]

[Qbs] Shiboken (Python binding generator) support in QBS

2018-07-05 Thread Алексей Скородумов
Hi, Does anyone knows about plans to support Shiboken in QBS? Or may be there is already an example how to make Python binding for C++ library with Shiboken and QBS? Something like samplebinding

[QBS] 1. Install lib file generated for shared library 2. Generating lib file with gcc/mingw

2014-06-27 Thread Алексей Скородумов
Hi, I am trying to install a .lib file generated during shared library build. Group { condition: product.type == dynamiclibrary fileTagsFilter: dynamiclibrary_export qbs.install: true qbs.installDir: lib } That does not work. What is a correct way