1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
SPDX-FileCopyrightText: 2014 Sergey Kalinichev <kalinichev.so.0@gmail.com>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "compilerfactories.h"
#include "compilerprovider.h"
#include "gcclikecompiler.h"
#include "msvccompiler.h"
QString ClangFactory::name() const
{
return QStringLiteral("Clang");
}
bool ClangFactory::isSupported(const KDevelop::Path& path) const
{
const auto filename = path.lastPathSegment();
return filename.contains(QLatin1String("clang")) && !filename.contains(QLatin1String("clang-cl"));
}
CompilerPointer ClangFactory::createCompiler(const QString& name, const QString& path, bool editable ) const
{
return CompilerPointer(new GccLikeCompiler(name, path, editable, this->name()));
}
void ClangFactory::registerDefaultCompilers(CompilerProvider* provider) const
{
const QString clang = QStringLiteral("clang");
auto compiler = createCompiler(name(), clang, false);
provider->registerCompiler(compiler);
}
QString GccFactory::name() const
{
return QStringLiteral("GCC");
}
bool GccFactory::isSupported(const KDevelop::Path& path) const
{
return path.lastPathSegment().contains(QLatin1String("gcc")) || path.lastPathSegment().contains(QLatin1String("g++"));
}
CompilerPointer GccFactory::createCompiler(const QString& name, const QString& path, bool editable ) const
{
return CompilerPointer(new GccLikeCompiler(name, path, editable, this->name()));
}
void GccFactory::registerDefaultCompilers(CompilerProvider* provider) const
{
const QString gcc = QStringLiteral("gcc");
auto compiler = createCompiler(name(), gcc, false);
provider->registerCompiler(compiler);
}
QString MsvcFactory::name() const
{
return QStringLiteral("MSVC");
}
CompilerPointer MsvcFactory::createCompiler(const QString& name, const QString& path, bool editable ) const
{
return CompilerPointer(new MsvcCompiler(name, path, editable, this->name()));
}
void MsvcFactory::registerDefaultCompilers(CompilerProvider* provider) const
{
provider->registerCompiler(createCompiler(name(), QStringLiteral("cl.exe"), false));
}
bool MsvcFactory::isSupported(const KDevelop::Path& path) const
{
return path.lastPathSegment() == QLatin1String("cl.exe") || path.lastPathSegment().contains(QLatin1String("clang-cl"));
}
|