2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2023-07-12 17:21:51 +02:00
|
|
|
|
2017-03-03 16:21:55 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2022-12-20 13:39:23 +01:00
|
|
|
#include <qmakeprojectmanager/qmakebuildconfiguration.h>
|
2021-02-04 14:53:42 +01:00
|
|
|
#include <cmakeprojectmanager/cmakebuildconfiguration.h>
|
2019-04-30 19:11:11 +02:00
|
|
|
|
2022-12-20 13:39:23 +01:00
|
|
|
namespace Ios::Internal {
|
2017-03-03 16:21:55 +01:00
|
|
|
|
2021-02-04 14:53:42 +01:00
|
|
|
class IosQmakeBuildConfigurationFactory : public QmakeProjectManager::QmakeBuildConfigurationFactory
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
IosQmakeBuildConfigurationFactory();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class IosCMakeBuildConfigurationFactory : public CMakeProjectManager::CMakeBuildConfigurationFactory
|
2017-03-03 16:21:55 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2021-02-04 14:53:42 +01:00
|
|
|
IosCMakeBuildConfigurationFactory();
|
2017-03-03 16:21:55 +01:00
|
|
|
};
|
|
|
|
|
|
2022-12-20 13:39:23 +01:00
|
|
|
} // Ios::Internal
|