From f02971235250f7f337ec60cbdc03a6f2c3b47fd0 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Wed, 17 Jul 2013 15:18:29 +0300 Subject: [PATCH] Qbs: Fix install path for styleplugin on Windows Change-Id: Ic3743df91ac48969c751ebbe78c62adb5b4850bb Reviewed-by: Orgad Shaneh Reviewed-by: Christian Kandeler --- src/libs/qtcomponents/styleitem/styleitem.qbs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libs/qtcomponents/styleitem/styleitem.qbs b/src/libs/qtcomponents/styleitem/styleitem.qbs index 6d948222f98..b4b70c84453 100644 --- a/src/libs/qtcomponents/styleitem/styleitem.qbs +++ b/src/libs/qtcomponents/styleitem/styleitem.qbs @@ -32,6 +32,7 @@ DynamicLibrary { Group { fileTagsFilter: product.type qbs.install: true - qbs.installDir: project.ide_library_path + "/qtcomponents/plugin" + qbs.installDir: (qbs.targetOS.contains("windows") ? "lib/qtcreator" : project.ide_library_path) + + "/qtcomponents/plugin" } }