forked from qt-creator/qt-creator
It's what the base class wants, and follows run and deploy precedence. Change-Id: I26eff43337851702417e7e4284fc390b904060f6 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
152 lines
5.9 KiB
C++
152 lines
5.9 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "iosbuildconfiguration.h"
|
|
|
|
#include "iosconfigurations.h"
|
|
#include "iosconstants.h"
|
|
#include "iosbuildsettingswidget.h"
|
|
|
|
#include "projectexplorer/kitinformation.h"
|
|
#include "projectexplorer/namedwidget.h"
|
|
#include "projectexplorer/target.h"
|
|
|
|
#include "qmakeprojectmanager/qmakebuildinfo.h"
|
|
#include "qmakeprojectmanager/qmakeprojectmanagerconstants.h"
|
|
|
|
#include "utils/algorithm.h"
|
|
|
|
using namespace QmakeProjectManager;
|
|
using namespace ProjectExplorer;
|
|
|
|
namespace Ios {
|
|
namespace Internal {
|
|
|
|
const char qmakeIosTeamSettings[] = "QMAKE_MAC_XCODE_SETTINGS+=qteam qteam.name=DEVELOPMENT_TEAM qteam.value=";
|
|
const char qmakeProvisioningProfileSettings[] = "QMAKE_MAC_XCODE_SETTINGS+=qprofile qprofile.name=PROVISIONING_PROFILE_SPECIFIER qprofile.value=";
|
|
const char signingIdentifierKey[] = "Ios.SigningIdentifier";
|
|
const char autoManagedSigningKey[] = "Ios.AutoManagedSigning";
|
|
|
|
IosBuildConfiguration::IosBuildConfiguration(Target *target, Core::Id id)
|
|
: QmakeBuildConfiguration(target, id)
|
|
{
|
|
}
|
|
|
|
QList<ProjectExplorer::NamedWidget *> IosBuildConfiguration::createSubConfigWidgets()
|
|
{
|
|
auto subConfigWidgets = QmakeBuildConfiguration::createSubConfigWidgets();
|
|
|
|
Core::Id devType = ProjectExplorer::DeviceTypeKitInformation::deviceTypeId(target()->kit());
|
|
// Ownership of this widget is with BuildSettingsWidget
|
|
auto buildSettingsWidget = new IosBuildSettingsWidget(devType, m_signingIdentifier,
|
|
m_autoManagedSigning);
|
|
subConfigWidgets.prepend(buildSettingsWidget);
|
|
connect(buildSettingsWidget, &IosBuildSettingsWidget::signingSettingsChanged,
|
|
this, &IosBuildConfiguration::onSigningSettingsChanged);
|
|
return subConfigWidgets;
|
|
}
|
|
|
|
QVariantMap IosBuildConfiguration::toMap() const
|
|
{
|
|
QVariantMap map(QmakeBuildConfiguration::toMap());
|
|
map.insert(signingIdentifierKey, m_signingIdentifier);
|
|
map.insert(autoManagedSigningKey, m_autoManagedSigning);
|
|
return map;
|
|
}
|
|
|
|
bool IosBuildConfiguration::fromMap(const QVariantMap &map)
|
|
{
|
|
if (!QmakeBuildConfiguration::fromMap(map))
|
|
return false;
|
|
m_autoManagedSigning = map.value(autoManagedSigningKey).toBool();
|
|
m_signingIdentifier = map.value(signingIdentifierKey).toString();
|
|
updateQmakeCommand();
|
|
return true;
|
|
}
|
|
|
|
void IosBuildConfiguration::onSigningSettingsChanged(bool autoManagedSigning, QString identifier)
|
|
{
|
|
if (m_signingIdentifier.compare(identifier) != 0
|
|
|| m_autoManagedSigning != autoManagedSigning) {
|
|
m_autoManagedSigning = autoManagedSigning;
|
|
m_signingIdentifier = identifier;
|
|
updateQmakeCommand();
|
|
}
|
|
}
|
|
|
|
void IosBuildConfiguration::updateQmakeCommand()
|
|
{
|
|
QMakeStep *qmakeStepInstance = qmakeStep();
|
|
const QString forceOverrideArg("-after");
|
|
if (qmakeStepInstance) {
|
|
QStringList extraArgs = qmakeStepInstance->extraArguments();
|
|
// remove old extra arguments.
|
|
Utils::erase(extraArgs, [forceOverrideArg](const QString& arg) {
|
|
return arg.startsWith(qmakeIosTeamSettings)
|
|
|| arg.startsWith(qmakeProvisioningProfileSettings)
|
|
|| arg == forceOverrideArg;
|
|
});
|
|
|
|
// Set force ovveride qmake switch
|
|
if (!m_signingIdentifier.isEmpty() )
|
|
extraArgs << forceOverrideArg;
|
|
|
|
Core::Id devType = ProjectExplorer::DeviceTypeKitInformation::deviceTypeId(target()->kit());
|
|
if (devType == Constants::IOS_DEVICE_TYPE && !m_signingIdentifier.isEmpty()) {
|
|
if (m_autoManagedSigning) {
|
|
extraArgs << qmakeIosTeamSettings + m_signingIdentifier;
|
|
} else {
|
|
// Get the team id from provisioning profile
|
|
ProvisioningProfilePtr profile =
|
|
IosConfigurations::provisioningProfile(m_signingIdentifier);
|
|
QString teamId;
|
|
if (profile)
|
|
teamId = profile->developmentTeam()->identifier();
|
|
else
|
|
qCDebug(iosLog) << "No provisioing profile found for id:"<< m_signingIdentifier;
|
|
|
|
if (!teamId.isEmpty()) {
|
|
extraArgs << qmakeProvisioningProfileSettings + m_signingIdentifier;
|
|
extraArgs << qmakeIosTeamSettings + teamId;
|
|
} else {
|
|
qCDebug(iosLog) << "Development team unavailable for profile:" << profile;
|
|
}
|
|
}
|
|
}
|
|
|
|
qmakeStepInstance->setExtraArguments(extraArgs);
|
|
}
|
|
}
|
|
|
|
IosBuildConfigurationFactory::IosBuildConfigurationFactory()
|
|
{
|
|
registerBuildConfiguration<IosBuildConfiguration>(QmakeProjectManager::Constants::QMAKE_BC_ID);
|
|
setSupportedTargetDeviceTypes({Constants::IOS_DEVICE_TYPE, Constants::IOS_SIMULATOR_TYPE});
|
|
setBasePriority(1);
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Ios
|