Re: [Qbs] qbs 2.3 released

2024-04-09 Thread Leon Buckel
Where can we find the changlog? It doesn’t seem to be in the usual location. > On 8. Apr 2024, at 12:52 PM, Christian Kandeler via Qbs > wrote: > > [You don't often get email from qbs@qt-project.org. Learn why this is > important at https://aka.ms/LearnAboutSenderIdentification ] > > Hi, > >

Re: [Qbs] Code Generator with shared library dependencies

2024-01-16 Thread Leon Buckel
> important at https://aka.ms/LearnAboutSenderIdentification ] > > On 1/12/24 11:10, Leon Buckel wrote: >> So my question would be: Is there a way to run an executable that is a >> Product similar to how ‘qbs run’ does it so all dependencies are found? > > There isn't, but

[Qbs] Code Generator with shared library dependencies

2024-01-12 Thread Leon Buckel
Hi, I’ve run into an issue when trying to run a generator tool that depends on shared libraries that are also part of the build. I have a rule that has an input for “application” to make sure the generator is built before the rule can be run. But actually running the tool with a Command

[Qbs] Building a universal binary with multiplexing

2024-01-09 Thread Leon Buckel
Hi, I’m trying to build a universal binary on macOS using multiplexing. This works mostly fine but I’m running into an issue when it comes to building a third-party library that uses another build system. I have a rule which calls this build system and specifies the output artifacts that are

[Qbs] No functional TLS backend warning

2023-10-26 Thread Leon Buckel
Hi, With the current qbs version 2.1.2 (maybe earlier 2.x ones too) installed on macOS via homebrew, we get lots of console output with these messages: qt.network.ssl: No functional TLS backend was found qt.network.ssl: No TLS backend is available This warning is from Qt itself and not qbs but

[Qbs] Build issues with Qt 6 on iOS

2022-03-09 Thread Leon Buckel
Hi everyone, I’m getting a bunch of errors like this when building our app for iOS with Qt 6: > clang: error: no such file or directory: > '$$[QT_INSTALL_PREFIX]/./qml/QtQml/objects-Release/Qml_resources_1/.rcc/qrc_qmake_QtQml.cpp.o’ The problem here is that the “$$[QT_INSTALL_PREFIX]” tag is

Re: [Qbs] Building code generator and its dependencies for a different architecture than the rest of the products

2020-03-20 Thread Leon Buckel
Thanks Christian, that's really helpful! I think I almost got it to work. The problem I have now is that the app seems to link against the wrong version of the library: ld: warning: ignoring file /.../lib.eyJwcm9maWxlIjoiaG9zdFByb2ZpbGUifQ--.cd69e9f1/.tmp/lib, building for iOS-arm64 but

[Qbs] Building code generator and its dependencies for a different architecture than the rest of the products

2020-03-20 Thread Leon Buckel
Hi, I have a project with the following products: * Shared library * Code generator tool * Application The code generator and application both depend on the shared library. The build process is as follows: 1. Build the shared library 2. Build the code generator and link

Re: [Qbs] Accessing qbs.architecture in Probe

2020-01-30 Thread Leon Buckel
Ah, sorry I accidentally only replied to Christian. Here's the original message: Here's the probe. I is instantiated at project level where the value of 'generatedQbsFilePath' is added to the 'references' property. If you run it like this, 'targetArch' will be undefined. Probe {

[Qbs] Accessing qbs.architecture in Probe

2020-01-30 Thread Leon Buckel
Hi all, I’m running conan from a probe to get all required dependencies for the build and to be able to directly include the generated qbs file into the project. For the windows build I need to know whether to request the package for 64 or 32 bit. However, qbs.architectures is not yet evaluated