From 22de213ab6bc23e80d8d5328b8b00706130d4efb Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 14 Nov 2013 16:50:04 +0100 Subject: [PATCH] round OS X targetOS property off The complete value for OS X is ["osx", "darwin", "bsd4", "bsd", "unix"] Change-Id: Ib0f08e1dfb4ef2ce6e23eeffbfa054fe01b629cf Reviewed-by: Tobias Hunger Reviewed-by: Jake Petroules Reviewed-by: Christian Kandeler --- src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp b/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp index 139a153af0b..853227da67a 100644 --- a/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp +++ b/src/plugins/qbsprojectmanager/defaultpropertyprovider.cpp @@ -96,7 +96,8 @@ QVariantMap DefaultPropertyProvider::properties(const ProjectExplorer::Kit *k, c : QStringList() << QLatin1String("msvc")); } else if (targetAbi.os() == ProjectExplorer::Abi::MacOS) { data.insert(QLatin1String(QBS_TARGETOS), QStringList() << QLatin1String("osx") - << QLatin1String("darwin") << QLatin1String("unix")); + << QLatin1String("darwin") << QLatin1String("bsd4") + << QLatin1String("bsd") << QLatin1String("unix")); if (tc->type() != QLatin1String("clang")) { data.insert(QLatin1String(QBS_TOOLCHAIN), QLatin1String("gcc")); } else {