aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2018-04-13 10:48:02 +0200
committerChristian Kandeler <christian.kandeler@qt.io>2018-04-13 12:34:25 +0000
commit68c40f931d392c880c3009c58364063e094dde17 (patch)
tree832bc94089a25779165a647205fc3013d5e2c313 /share/qbs/modules/qbs
parenta67e0082a55449bbc680c5cd23c398e8c3def392 (diff)
Remove the deprecated Product.profile property
It was not used anywhere anymore. Change-Id: I420c40f562634159e838a805aeedbefb89185c75 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'share/qbs/modules/qbs')
-rw-r--r--share/qbs/modules/qbs/common.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/qbs/common.qbs b/share/qbs/modules/qbs/common.qbs
index 29cf5c19a..86ce27c59 100644
--- a/share/qbs/modules/qbs/common.qbs
+++ b/share/qbs/modules/qbs/common.qbs
@@ -83,7 +83,7 @@ Module {
property string pathSeparator: hostOS.contains("windows") ? "\\" : "/"
property string nullDevice: hostOS.contains("windows") ? "NUL" : "/dev/null"
property path shellPath: hostOS.contains("windows") ? windowsShellPath : "/bin/sh"
- property string profile
+ property string profile: project.profile
property string toolchainType: {
if (targetOS.contains("windows"))
return hostOS.contains("windows") ? "msvc" : "mingw";