2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 Alexis Jeandet.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-10-29 10:20:14 +01:00
|
|
|
|
2020-05-01 18:20:56 +02:00
|
|
|
#include "mesonprojectimporter.h"
|
|
|
|
|
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
static Q_LOGGING_CATEGORY(mInputLog, "qtc.meson.import", QtWarningMsg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace MesonProjectManager {
|
|
|
|
|
namespace Internal {
|
2020-10-29 10:20:14 +01:00
|
|
|
|
2020-05-01 18:20:56 +02:00
|
|
|
MesonProjectImporter::MesonProjectImporter(const Utils::FilePath &path)
|
|
|
|
|
: QtSupport::QtProjectImporter{path}
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
QStringList MesonProjectImporter::importCandidates()
|
|
|
|
|
{
|
|
|
|
|
//TODO, this can be done later
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-02 19:16:40 +01:00
|
|
|
QList<void *> MesonProjectImporter::examineDirectory(const Utils::FilePath &importPath,
|
|
|
|
|
QString *warningMessage) const
|
2020-05-01 18:20:56 +02:00
|
|
|
{
|
2020-12-02 19:16:40 +01:00
|
|
|
Q_UNUSED(warningMessage)
|
2020-05-01 18:20:56 +02:00
|
|
|
//TODO, this can be done later
|
|
|
|
|
qCDebug(mInputLog()) << "examining build directory" << importPath.toUserOutput();
|
|
|
|
|
QList<void *> data;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool MesonProjectImporter::matchKit(void *directoryData, const ProjectExplorer::Kit *k) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(directoryData)
|
|
|
|
|
Q_UNUSED(k)
|
|
|
|
|
//TODO, this can be done later
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::Kit *MesonProjectImporter::createKit(void *directoryData) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(directoryData)
|
|
|
|
|
//TODO, this can be done later
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QList<ProjectExplorer::BuildInfo> MesonProjectImporter::buildInfoList(void *directoryData) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(directoryData)
|
|
|
|
|
//TODO, this can be done later
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MesonProjectImporter::deleteDirectoryData(void *directoryData) const
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(directoryData)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace MesonProjectManager
|