Description
Consider an example like this:
Application { Profile { name: 'my-special-profile' qbs.architecture: 'arm64' qbs.toolchainType: 'xcode' qbs.targetPlatform: 'macos' } name: 'helloworld' targetName: 'helloworld-' + qbs.architecture files: 'main.cpp' Depends { name: 'cpp' } }
This is almost a copy-paste from the official documentation.
If I run
qbs build profile:my-special-profile
it builds helloworld-undefined while helloworld-arm64 is expected.