Qbs: Fix install path for styleplugin on Windows

Change-Id: Ic3743df91ac48969c751ebbe78c62adb5b4850bb
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
This commit is contained in:
Orgad Shaneh
2013-07-17 15:18:29 +03:00
committed by Christian Kandeler
parent 4b6de71fd0
commit f029712352

View File

@@ -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"
}
}