diff options
author | Jake Petroules <jake.petroules@qt.io> | 2016-04-18 10:56:13 -0700 |
---|---|---|
committer | Jake Petroules <jake.petroules@qt.io> | 2016-04-22 08:14:26 +0000 |
commit | 0655ccbe181c466f2a93ac44d298c79c1fe46ea4 (patch) | |
tree | 11fb679ca5cedc038ebc815f88628a52c3cb13ca /qbs-resources | |
parent | 62c880e7c52a55651d5cc67ffcf35b3cf8745533 (diff) | |
download | qbs-0655ccbe181c466f2a93ac44d298c79c1fe46ea4.tar.gz |
Remove items scheduled for removal in 1.6.
Change-Id: I4098b281ab9c1f5bc29fe23164dd3a3303759ce0
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'qbs-resources')
-rw-r--r-- | qbs-resources/imports/QbsLibrary.qbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs-resources/imports/QbsLibrary.qbs b/qbs-resources/imports/QbsLibrary.qbs index 4d05ea004..474b67343 100644 --- a/qbs-resources/imports/QbsLibrary.qbs +++ b/qbs-resources/imports/QbsLibrary.qbs @@ -9,7 +9,7 @@ QbsProduct { targetName: (qbs.enableDebugCode && qbs.targetOS.contains("windows")) ? (name + 'd') : name destinationDirectory: qbs.targetOS.contains("windows") ? "bin" : project.libDirName cpp.defines: base.concat(type == "staticlibrary" ? ["QBS_STATIC_LIB"] : ["QBS_LIBRARY"]) - cpp.installNamePrefix: "@rpath" + cpp.sonamePrefix: qbs.targetOS.contains("darwin") ? "@rpath" : undefined cpp.visibility: "minimal" cpp.cxxLanguageVersion: "c++11" bundle.isBundle: false |