Re: [Qbs] How to explicitly prohibit the use of qt-framework in project

2020-10-19 Thread Richard Weickelt
Hi, you may try qbs build ... moduleProviders.Qt.qmakeFilePaths:/invalid to configure a non-existing location. You can also set this property in your profile if you like. -Original Message- From: "Карелин Павел" To: qbs@qt-project.org Sent: Mon, 19 Oct 2020 20:26 Subject: [Qbs]

[Qbs] How to explicitly prohibit the use of qt-framework in project

2020-10-19 Thread Карелин Павел
Hi ! I need to check the build of the project for the case where qt-framework is not installed For this I have created the following construction: Depends { name: "Qt"; submodules: ["core", "network"]; required: false} condition: Qt.core.present Then in QtC I created a profile without qt-fram