Skip to content
Snippets Groups Projects
Commit f1c299a8 authored by Orgad Shaneh's avatar Orgad Shaneh Committed by Joerg Bornemann
Browse files

Qbs: Allow provider specification for plugins


Change-Id: I2016da500a9e81d8b2065c4c1c26a15d59c15abf
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@nokia.com>
parent 20efc0a6
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ Module { ...@@ -7,7 +7,7 @@ Module {
property int ide_version_minor: project.ide_version_minor property int ide_version_minor: project.ide_version_minor
property int ide_version_release: project.ide_version_release property int ide_version_release: project.ide_version_release
property string qtcreator_version: ide_version_major + '.' + ide_version_minor + '.' + ide_version_release property string qtcreator_version: ide_version_major + '.' + ide_version_minor + '.' + ide_version_release
property string destdir: "lib/qtcreator/plugins/Nokia/" property string destdir: product.destination
FileTagger { FileTagger {
pattern: "*.in" pattern: "*.in"
......
...@@ -3,7 +3,8 @@ import qbs.fileinfo 1.0 as FileInfo ...@@ -3,7 +3,8 @@ import qbs.fileinfo 1.0 as FileInfo
Product { Product {
type: ["dynamiclibrary", "pluginSpec"] type: ["dynamiclibrary", "pluginSpec"]
destination: "lib/qtcreator/plugins/Nokia" property string provider: 'Nokia'
destination: "lib/qtcreator/plugins/" + provider
targetName: { targetName: {
// see PluginSpecPrivate::loadLibrary() // see PluginSpecPrivate::loadLibrary()
if (qbs.debugInformation) { if (qbs.debugInformation) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment