forked from qt-creator/qt-creator
Replace the current license disclaimer in files by a SPDX-License-Identifier. Task-number: QTBUG-67283 Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
101 lines
3.0 KiB
C++
101 lines
3.0 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "iosplugin.h"
|
|
|
|
#include "iosbuildconfiguration.h"
|
|
#include "iosbuildstep.h"
|
|
#include "iosconfigurations.h"
|
|
#include "iosconstants.h"
|
|
#include "iosdeploystep.h"
|
|
#include "iosdevice.h"
|
|
#include "iosdsymbuildstep.h"
|
|
#include "iosqtversion.h"
|
|
#include "iosrunner.h"
|
|
#include "iossettingspage.h"
|
|
#include "iossimulator.h"
|
|
#include "iostoolhandler.h"
|
|
#include "iosrunconfiguration.h"
|
|
|
|
#include <projectexplorer/deployconfiguration.h>
|
|
#include <projectexplorer/devicesupport/devicemanager.h>
|
|
#include <projectexplorer/runconfiguration.h>
|
|
|
|
#include <qmakeprojectmanager/qmakeprojectmanagerconstants.h>
|
|
|
|
using namespace ProjectExplorer;
|
|
using namespace QtSupport;
|
|
|
|
namespace Ios {
|
|
namespace Internal {
|
|
|
|
Q_LOGGING_CATEGORY(iosLog, "qtc.ios.common", QtWarningMsg)
|
|
|
|
class IosDeployConfigurationFactory : public DeployConfigurationFactory
|
|
{
|
|
public:
|
|
IosDeployConfigurationFactory()
|
|
{
|
|
setConfigBaseId("Qt4ProjectManager.IosDeployConfiguration");
|
|
addSupportedTargetDeviceType(Constants::IOS_DEVICE_TYPE);
|
|
addSupportedTargetDeviceType(Constants::IOS_SIMULATOR_TYPE);
|
|
setDefaultDisplayName(QCoreApplication::translate("Ios::Internal", "Deploy on iOS"));
|
|
addInitialStep(Constants::IOS_DEPLOY_STEP_ID);
|
|
}
|
|
};
|
|
|
|
class IosPluginPrivate
|
|
{
|
|
public:
|
|
IosQmakeBuildConfigurationFactory qmakeBuildConfigurationFactory;
|
|
IosCMakeBuildConfigurationFactory cmakeBuildConfigurationFactory;
|
|
IosToolChainFactory toolChainFactory;
|
|
IosRunConfigurationFactory runConfigurationFactory;
|
|
IosSettingsPage settingsPage;
|
|
IosQtVersionFactory qtVersionFactory;
|
|
IosDeviceFactory deviceFactory;
|
|
IosSimulatorFactory simulatorFactory;
|
|
IosBuildStepFactory buildStepFactory;
|
|
IosDeployStepFactory deployStepFactory;
|
|
IosDsymBuildStepFactory dsymBuildStepFactory;
|
|
IosDeployConfigurationFactory deployConfigurationFactory;
|
|
|
|
RunWorkerFactory runWorkerFactory{
|
|
RunWorkerFactory::make<IosRunSupport>(),
|
|
{ProjectExplorer::Constants::NORMAL_RUN_MODE},
|
|
{runConfigurationFactory.runConfigurationId()}
|
|
};
|
|
RunWorkerFactory debugWorkerFactory{
|
|
RunWorkerFactory::make<IosDebugSupport>(),
|
|
{ProjectExplorer::Constants::DEBUG_RUN_MODE},
|
|
{runConfigurationFactory.runConfigurationId()}
|
|
};
|
|
RunWorkerFactory qmlProfilerWorkerFactory{
|
|
RunWorkerFactory::make<IosQmlProfilerSupport>(),
|
|
{ProjectExplorer::Constants::QML_PROFILER_RUN_MODE},
|
|
{runConfigurationFactory.runConfigurationId()}
|
|
};
|
|
};
|
|
|
|
IosPlugin::~IosPlugin()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
bool IosPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
|
{
|
|
Q_UNUSED(arguments)
|
|
Q_UNUSED(errorMessage)
|
|
|
|
qRegisterMetaType<Ios::IosToolHandler::Dict>("Ios::IosToolHandler::Dict");
|
|
|
|
IosConfigurations::initialize();
|
|
|
|
d = new IosPluginPrivate;
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace Ios
|