Re: [Qbs] Exporting Dependencies on generated files

2021-11-04 Thread Christian Kandeler
On 11/4/21 11:22, Björn Schäpers wrote: we have a static library which uses Protobuf, thus generates the headers, and compiles the code directly into it. Static Library {   ...   Export {     Depends { name: "cpp" }     Depends { name: "protobuf.cpp" }     cpp.systemIncludePaths: [product.proto

[Qbs] Exporting Dependencies on generated files

2021-11-04 Thread Björn Schäpers
Hi there, we have a static library which uses Protobuf, thus generates the headers, and compiles the code directly into it. Static Library { ... Export { Depends { name: "cpp" } Depends { name: "protobuf.cpp" } cpp.systemIncludePaths: [product.protobuf.cpp.outputDir] } } And