Re: [QBS] Qbs not working in Creator on Win7

2015-09-03 Thread Tyler Daniel
> I've noticed that sometimes when I open a qbs project it is unconfigured (no > kits are configured). Try switching to Projects mode. If the view is empty, > click Add Kit -> then it should be fine. Thanks for the suggestion! Kits are configured, it’s just the Qbs profile that’s broken.. :(

Re: [QBS] Qbs not working in Creator on Win7

2015-09-03 Thread Tyler Daniel
>> Should qbs work on windows?? I’d really like to use it, especially after >> investing so much time, but I’m at a loss and need to get real work done >> soon. :( :( > > It works fine in my experience (using MSYS2). When you say msys2, do you mean that’s the compiler/kit you’re using? I’m u

Re: [QBS] On the use of "Depends" keyword

2015-09-03 Thread Jake Petroules
> On Sep 3, 2015, at 2:34 PM, NIkolai Marchenko wrote: > > Expanding on the second question a little: > > Let's say there is a client that only has sources for lib2 but not lib1. He > only has lib1.dll > He also has his own superproject that lib2 is a part of. > Now, if he tries to compile lib

Re: [QBS] On the use of "Depends" keyword

2015-09-03 Thread NIkolai Marchenko
Expanding on the second question a little: Let's say there is a client that only has sources for lib2 but not lib1. He only has lib1.dll He also has his own superproject that lib2 is a part of. Now, if he tries to compile lib2 it will produce him an unresolved lib1 dependency. He can't comment out

[QBS] On the use of "Depends" keyword

2015-09-03 Thread NIkolai Marchenko
Hi! I have a problem/misunderstanding/concern with Depends keyword in qbs. Lets consider a project like this -- in project.qbs -- Project{ name:"super" references: ["lib1.qbs", "lib2.qbs"] } --in lib1.qbs -- Product{ type: "dynamicLibrary" name: "lib1" Depends{name: Qt.core} //assuming this expor

Re: [QBS] Qbs not working in Creator on Win7

2015-09-03 Thread Orgad Shaneh
On Thu, Sep 3, 2015 at 7:16 PM, Tyler Daniel wrote: > Hi all, > > I’ve tried using the project wizards to create several kinds of qbs-built > projects on Win7. I’ve tried 3.5.0 and 3.4.2. In both cases Creator can’t > even parse the generated qbs file. > > The same releases on my Mac work fine.

Re: [QBS] Qbs not working in Creator on Win7

2015-09-03 Thread Ray Donnelly
On Thu, Sep 3, 2015 at 5:16 PM, Tyler Daniel wrote: > Hi all, > > I’ve tried using the project wizards to create several kinds of qbs-built > projects on Win7. I’ve tried 3.5.0 and 3.4.2. In both cases Creator can’t > even parse the generated qbs file. > > The same releases on my Mac work fine

Re: [QBS] Help on rule usage

2015-09-03 Thread olivier musse
Hi Christian, Le 03/09/2015 17:14, Christian Kandeler a écrit : > On 09/03/2015 05:00 PM, olivier musse wrote: >> I would like, in a rule of a product (application), apply some >> modification on the target files of another product (dynamic library) on >> which the application depends. >> I tried u

[QBS] Qbs not working in Creator on Win7

2015-09-03 Thread Tyler Daniel
Hi all, I’ve tried using the project wizards to create several kinds of qbs-built projects on Win7. I’ve tried 3.5.0 and 3.4.2. In both cases Creator can’t even parse the generated qbs file. The same releases on my Mac work fine. If I take a qbs project that works on my Mac and copy it over,

Re: [QBS] Help on rule usage

2015-09-03 Thread Christian Kandeler
On 09/03/2015 05:00 PM, olivier musse wrote: > I would like, in a rule of a product (application), apply some > modification on the target files of another product (dynamic library) on > which the application depends. > I tried using inputsFromDependencies as following but is does not works. Note

[QBS] Help on rule usage

2015-09-03 Thread olivier musse
Hi, I would like, in a rule of a product (application), apply some modification on the target files of another product (dynamic library) on which the application depends. I tried using inputsFromDependencies as following but is does not works. Product { type:['dynamicLibrary','mylib']