aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/qbs/common.qbs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2013-02-05 17:53:16 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2013-02-06 10:44:18 +0100
commit9b6cd94a07cb961db68a1c1374e5f267349214a3 (patch)
treeb865807b97efd8133b5bb7495eb60da8f1102e81 /share/qbs/modules/qbs/common.qbs
parent10d11fb23413420af8aa15a15731ccafb42b1871 (diff)
Better support for non-Linux, non-Mac Unixoid systems.
Let's not exclude them for no good reason. Change-Id: I09ba989d5573383be8f7c5d88eaf44317b268695 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share/qbs/modules/qbs/common.qbs')
-rw-r--r--share/qbs/modules/qbs/common.qbs3
1 files changed, 1 insertions, 2 deletions
diff --git a/share/qbs/modules/qbs/common.qbs b/share/qbs/modules/qbs/common.qbs
index 25d41ff00..564f81303 100644
--- a/share/qbs/modules/qbs/common.qbs
+++ b/share/qbs/modules/qbs/common.qbs
@@ -7,10 +7,9 @@ Module {
property bool debugInformation: (buildVariant == "debug")
property string optimization: (buildVariant == "debug" ? "none" : "fast")
property string hostOS: getHostOS()
- property string hostArchitecture: getHostDefaultArchitecture()
property string pathListSeparator: hostOS === "windows" ? ";" : ":"
property string pathSeparator: hostOS === "windows" ? "\\" : "/"
- property string targetOS
+ property string targetOS: hostOS
property var targetPlatform: {
if (targetOS === "linux")
return [ "unix", "linux" ];