From 6e4ec3e69f1b0bb27a6c20e5608686142d8328a1 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 25 Jan 2023 07:59:49 -0800 Subject: [PATCH] Installing app bundle on macos. --- qbs/imports/VToolApp.qbs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/qbs/imports/VToolApp.qbs b/qbs/imports/VToolApp.qbs index e8506e243..ae61d1858 100644 --- a/qbs/imports/VToolApp.qbs +++ b/qbs/imports/VToolApp.qbs @@ -194,4 +194,12 @@ VApp { condition: i18nconfig.limitDeploymentOfQtTranslations windeployqt.languages: i18nconfig.qtTranslationLocales.join(',') } + + Group { + condition: qbs.targetOS.contains("macos") && bundle.isBundle + fileTagsFilter: "bundle.content" + qbs.install: true + qbs.installDir: buildconfig.installAppPath + qbs.installSourceBase: destinationDirectory + } }