From 880001822494830fcbc236c1e73af860a9052b5b Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 6 Jun 2013 12:16:20 +0200 Subject: [PATCH] .qbs/Mac: build tools without app bundle and install to right location Change-Id: I422835b2e85600846aec4d309249059acf1fa483 Reviewed-by: Joerg Bornemann --- src/tools/QtcTool.qbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tools/QtcTool.qbs b/src/tools/QtcTool.qbs index 854ea5f0e30..781eaee5a0f 100644 --- a/src/tools/QtcTool.qbs +++ b/src/tools/QtcTool.qbs @@ -2,6 +2,7 @@ import qbs.base 1.0 import "../../qbs/defaults.js" as Defaults Application { + type: "application" // no Mac app bundle Depends { name: "cpp" } cpp.defines: Defaults.defines(qbs) cpp.linkerFlags: { @@ -12,6 +13,6 @@ Application { Group { fileTagsFilter: product.type qbs.install: true - qbs.installDir: project.ide_app_path + qbs.installDir: project.ide_libexec_path } }