05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
40 lines
1013 B
C++
40 lines
1013 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
|
|
|
|
#ifndef METAMAKEFILE_H
|
|
#define METAMAKEFILE_H
|
|
|
|
#include <qlist.h>
|
|
#include <qstring.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QMakeProject;
|
|
class MakefileGenerator;
|
|
|
|
class MetaMakefileGenerator
|
|
{
|
|
protected:
|
|
MetaMakefileGenerator(QMakeProject *p, const QString &n, bool op=true) : project(p), own_project(op), name(n) { }
|
|
QMakeProject *project;
|
|
bool own_project;
|
|
QString name;
|
|
|
|
public:
|
|
|
|
virtual ~MetaMakefileGenerator();
|
|
|
|
static MetaMakefileGenerator *createMetaGenerator(QMakeProject *proj, const QString &name, bool op=true, bool *success = nullptr);
|
|
static MakefileGenerator *createMakefileGenerator(QMakeProject *proj, bool noIO = false);
|
|
|
|
inline QMakeProject *projectFile() const { return project; }
|
|
|
|
virtual bool init() = 0;
|
|
virtual int type() const { return -1; }
|
|
virtual bool write() = 0;
|
|
};
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
#endif // METAMAKEFILE_H
|