2023-12-15 13:09:36 +01:00
|
|
|
// Copyright (C) 2019 Luxoft Sweden AB
|
|
|
|
|
// Copyright (C) 2018 Pelagicore AG
|
|
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
|
|
|
|
|
|
#include "appmanagercreatepackagestep.h"
|
|
|
|
|
#include "appmanagerdeployconfigurationautoswitcher.h"
|
|
|
|
|
#include "appmanagerdeployconfigurationfactory.h"
|
|
|
|
|
#include "appmanagerdeploypackagestep.h"
|
|
|
|
|
#include "appmanagerinstallpackagestep.h"
|
2023-12-20 10:38:09 +01:00
|
|
|
#include "appmanagercmakepackagestep.h"
|
2023-12-15 13:09:36 +01:00
|
|
|
#include "appmanagerrunconfiguration.h"
|
|
|
|
|
#include "appmanagerruncontrol.h"
|
|
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
#include <extensionsystem/iplugin.h>
|
2023-12-15 13:09:36 +01:00
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
namespace AppManager::Internal {
|
2023-12-15 13:09:36 +01:00
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
class AppManagerPlugin final : public ExtensionSystem::IPlugin
|
2023-12-15 13:09:36 +01:00
|
|
|
{
|
2024-01-11 15:07:27 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "QtApplicationManagerIntegration.json")
|
2024-01-10 18:04:51 +01:00
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
void initialize() final
|
|
|
|
|
{
|
|
|
|
|
setupAppManagerCMakePackageStep();
|
|
|
|
|
setupAppManagerCreatePackageStep();
|
|
|
|
|
setupAppManagerDeployPackageStep();
|
|
|
|
|
setupAppManagerInstallPackageStep();
|
2024-01-11 13:46:21 +01:00
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
setupAppManagerDeployConfiguration();
|
|
|
|
|
setupAppManagerDeployConfigurationAutoSwitcher();
|
2024-01-11 14:40:50 +01:00
|
|
|
|
2024-01-11 15:07:27 +01:00
|
|
|
setupAppManagerRunConfiguration();
|
|
|
|
|
|
|
|
|
|
setupAppManagerRunWorker();
|
|
|
|
|
setupAppManagerDebugWorker();
|
|
|
|
|
setupAppManagerQmlToolingWorker();
|
2024-03-07 17:16:30 +01:00
|
|
|
setupAppManagerPerfProfilerWorker();
|
2024-01-11 15:07:27 +01:00
|
|
|
}
|
|
|
|
|
};
|
2023-12-15 13:09:36 +01:00
|
|
|
|
|
|
|
|
} // AppManager::Internal
|
2024-01-11 15:07:27 +01:00
|
|
|
|
|
|
|
|
#include "appmanagerplugin.moc"
|