[Qbs] Building a product's files into another product

2020-07-29 Thread Alberto Mardegan
Hi! The subject is a bit convoluted, but the meaning is this one: I have product A defined like this: Product { type: "linkme" name: "a" Depends { name: "cpp" } files: ["one.cpp"] } (in reality, the situation is more complex than this and the input files are static files with

Re: [Qbs] Conditionally adding a file tag

2020-07-29 Thread Jochen Ulrich
Hi Alberto! I guess the issue here is that FileTaggers are disabled in this case: > File taggers are disabled if file tags are set explicitly in a product or > group. > For example, the "cpp" tag is not attached to the .cpp files in the following > product (see

Re: [Qbs] Conditionally adding a file tag

2020-07-29 Thread Alberto Mardegan
Hi Ulrich, On 29/07/20 10:07, Jochen Ulrich wrote: > I guess the issue here is that FileTaggers are disabled in this case: > >> File taggers are disabled if file tags are set explicitly in a product or >> group. >> For example, the "cpp" tag is not attached to the .cpp files in the >>