2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 Alexis Jeandet.
|
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
|
2020-05-01 18:20:56 +02:00
|
|
|
|
|
|
|
|
#include "mesonwrapper.h"
|
2020-10-29 10:20:14 +01:00
|
|
|
|
|
|
|
|
#include <utils/algorithm.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2020-05-01 18:20:56 +02:00
|
|
|
namespace {
|
|
|
|
|
template<typename First>
|
|
|
|
|
void impl_option_cat(QStringList &list, const First &first)
|
|
|
|
|
{
|
|
|
|
|
list.append(first);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename First, typename... T>
|
2020-10-27 22:36:27 +01:00
|
|
|
void impl_option_cat(QStringList &list, const First &first, const T &...args)
|
2020-05-01 18:20:56 +02:00
|
|
|
{
|
|
|
|
|
impl_option_cat(list, first);
|
|
|
|
|
impl_option_cat(list, args...);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<typename... T>
|
2020-10-27 22:36:27 +01:00
|
|
|
QStringList options_cat(const T &...args)
|
2020-05-01 18:20:56 +02:00
|
|
|
{
|
|
|
|
|
QStringList result;
|
|
|
|
|
impl_option_cat(result, args...);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
namespace MesonProjectManager {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
Command MesonWrapper::setup(const Utils::FilePath &sourceDirectory,
|
|
|
|
|
const Utils::FilePath &buildDirectory,
|
|
|
|
|
const QStringList &options) const
|
|
|
|
|
{
|
|
|
|
|
return {m_exe,
|
|
|
|
|
sourceDirectory,
|
|
|
|
|
options_cat("setup", options, sourceDirectory.toString(), buildDirectory.toString())};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Command MesonWrapper::configure(const Utils::FilePath &sourceDirectory,
|
|
|
|
|
const Utils::FilePath &buildDirectory,
|
|
|
|
|
const QStringList &options) const
|
|
|
|
|
{
|
|
|
|
|
if (!isSetup(buildDirectory))
|
|
|
|
|
return setup(sourceDirectory, buildDirectory, options);
|
|
|
|
|
return {m_exe, buildDirectory, options_cat("configure", options, buildDirectory.toString())};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Command MesonWrapper::regenerate(const Utils::FilePath &sourceDirectory,
|
|
|
|
|
const Utils::FilePath &buildDirectory) const
|
|
|
|
|
{
|
|
|
|
|
return {m_exe,
|
|
|
|
|
buildDirectory,
|
|
|
|
|
options_cat("--internal",
|
|
|
|
|
"regenerate",
|
|
|
|
|
sourceDirectory.toString(),
|
|
|
|
|
buildDirectory.toString(),
|
|
|
|
|
"--backend",
|
|
|
|
|
"ninja")};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Command MesonWrapper::introspect(const Utils::FilePath &sourceDirectory) const
|
|
|
|
|
{
|
|
|
|
|
return {m_exe,
|
|
|
|
|
sourceDirectory,
|
|
|
|
|
{"introspect", "--all", QString("%1/meson.build").arg(sourceDirectory.toString())}};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace MesonProjectManager
|