Verbose true.

This commit is contained in:
Roman Telezhynskyi 2023-02-20 21:15:49 +02:00
parent 6b4683d10a
commit 51f7c5102d
2 changed files with 3 additions and 2 deletions

View File

@ -182,7 +182,7 @@ macos_task_template: &MACOS_TASK_TEMPLATE
- qbs setup-qt /opt/homebrew/opt/qt6/bin/qmake qt6 - qbs setup-qt /opt/homebrew/opt/qt6/bin/qmake qt6
- qbs-config defaultProfile qt6 - qbs-config defaultProfile qt6
- qbs config profiles.qt6.baseProfile clang - qbs config profiles.qt6.baseProfile clang
- qbs build -f valentina.qbs -d $CIRRUS_WORKING_DIR/build --command-echo-mode command-line config:release modules.buildconfig.enableUnitTests:false modules.buildconfig.enableMultiBundle:${MULTI_BUNDLE} qbs.installRoot:$CIRRUS_WORKING_DIR/build/install-root profile:qt6 project.enableConan:true project.minimumMacosVersion:11.0 - qbs build -f valentina.qbs -d $CIRRUS_WORKING_DIR/build --command-echo-mode command-line config:release modules.buildconfig.enableUnitTests:false modules.buildconfig.enableMultiBundle:${MULTI_BUNDLE} qbs.installRoot:$CIRRUS_WORKING_DIR/build/install-root profile:qt6 project.enableConan:true project.minimumMacosVersion:${MACOS_DEPLOYMENT_TARGET}
- ccache -s - ccache -s
deploy_script: deploy_script:
- pwd - pwd

View File

@ -11,9 +11,10 @@ Project {
id: thirdPartyConanPackages id: thirdPartyConanPackages
condition: enableConan condition: enableConan
conanfilePath: project.sourceDirectory + "/conanfile.py" conanfilePath: project.sourceDirectory + "/conanfile.py"
verbose: true
settings: { settings: {
if (qbs.targetOS.contains("macos") && project.minimumMacosVersion !== undefined) if (qbs.targetOS.contains("macos") && project.minimumMacosVersion !== undefined)
return ({"os.version": project.minimumMacosVersion.toString()}); return ({"os.version": project.minimumMacosVersion});
return undefined; return undefined;
} }
} }