diff options
author | Joerg Bornemann <joerg.bornemann@digia.com> | 2013-06-20 14:43:33 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@digia.com> | 2013-06-20 15:31:39 +0200 |
commit | cd37aef6cf035fbca663c206f5417e7f0532bc75 (patch) | |
tree | 85e6c090c2fec132ba3727de8d5976430b79c1d8 /src/plugins/QtcPlugin.qbs | |
parent | 84a597e41144b726ae7f1f0fdbe5c9f0cc2c2659 (diff) | |
download | qt-creator-cd37aef6cf035fbca663c206f5417e7f0532bc75.tar.gz |
update qbs files
Use the new contains function and the targetOS list.
Change-Id: I38b995eb9328e449befad85792512c45670cc8c9
Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'src/plugins/QtcPlugin.qbs')
-rw-r--r-- | src/plugins/QtcPlugin.qbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/QtcPlugin.qbs b/src/plugins/QtcPlugin.qbs index 7c530eb4fa..d3476a68b3 100644 --- a/src/plugins/QtcPlugin.qbs +++ b/src/plugins/QtcPlugin.qbs @@ -30,7 +30,7 @@ Product { cpp.defines: Defaults.defines(qbs).concat([name.toUpperCase() + "_LIBRARY"]) cpp.installNamePrefix: "@rpath/PlugIns/" + provider + "/" - cpp.rpaths: qbs.targetOS == "mac" ? ["@loader_path/../..", "@executable_path/.."] + cpp.rpaths: qbs.targetOS.contains("mac") ? ["@loader_path/../..", "@executable_path/.."] : ["$ORIGIN", "$ORIGIN/..", "$ORIGIN/../.."] cpp.linkerFlags: { if (qbs.buildVariant == "release" && (qbs.toolchain == "gcc" || qbs.toolchain == "mingw")) |