forked from qt-creator/qt-creator
Change-Id: I1fa9583fccd5bb6a93fcfea9e3977f626b790afb Reviewed-by: Christian Stenger <christian.stenger@qt.io>
24 lines
625 B
C++
24 lines
625 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include <qmakeprojectmanager/qmakebuildconfiguration.h>
|
|
#include <cmakeprojectmanager/cmakebuildconfiguration.h>
|
|
|
|
namespace Ios::Internal {
|
|
|
|
class IosQmakeBuildConfigurationFactory : public QmakeProjectManager::QmakeBuildConfigurationFactory
|
|
{
|
|
public:
|
|
IosQmakeBuildConfigurationFactory();
|
|
};
|
|
|
|
class IosCMakeBuildConfigurationFactory : public CMakeProjectManager::CMakeBuildConfigurationFactory
|
|
{
|
|
public:
|
|
IosCMakeBuildConfigurationFactory();
|
|
};
|
|
|
|
} // Ios::Internal
|