forked from qt-creator/qt-creator
ClangTools: Merge ClangTidyClazyRunControl into ClangToolsRunControl
Change-Id: I162bbb9374fda0bbfc7f3db8fa245f3b5d6e73ad Reviewed-by: Cristian Adam <cristian.adam@qt.io> Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
@@ -14,7 +14,6 @@ add_qtc_plugin(ClangTools
|
|||||||
clangfileinfo.h
|
clangfileinfo.h
|
||||||
clangfixitsrefactoringchanges.cpp clangfixitsrefactoringchanges.h
|
clangfixitsrefactoringchanges.cpp clangfixitsrefactoringchanges.h
|
||||||
clangselectablefilesdialog.cpp clangselectablefilesdialog.h clangselectablefilesdialog.ui
|
clangselectablefilesdialog.cpp clangselectablefilesdialog.h clangselectablefilesdialog.ui
|
||||||
clangtidyclazyruncontrol.cpp clangtidyclazyruncontrol.h
|
|
||||||
clangtidyclazyrunner.cpp clangtidyclazyrunner.h
|
clangtidyclazyrunner.cpp clangtidyclazyrunner.h
|
||||||
clangtidyclazytool.cpp clangtidyclazytool.h
|
clangtidyclazytool.cpp clangtidyclazytool.h
|
||||||
clangtool.cpp clangtool.h
|
clangtool.cpp clangtool.h
|
||||||
|
@@ -1,84 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
**
|
|
||||||
** Copyright (C) 2016 The Qt Company Ltd.
|
|
||||||
** Contact: https://www.qt.io/licensing/
|
|
||||||
**
|
|
||||||
** This file is part of Qt Creator.
|
|
||||||
**
|
|
||||||
** Commercial License Usage
|
|
||||||
** Licensees holding valid commercial Qt licenses may use this file in
|
|
||||||
** accordance with the commercial license agreement provided with the
|
|
||||||
** Software or, alternatively, in accordance with the terms contained in
|
|
||||||
** a written agreement between you and The Qt Company. For licensing terms
|
|
||||||
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
||||||
** information use the contact form at https://www.qt.io/contact-us.
|
|
||||||
**
|
|
||||||
** GNU General Public License Usage
|
|
||||||
** Alternatively, this file may be used under the terms of the GNU
|
|
||||||
** General Public License version 3 as published by the Free Software
|
|
||||||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
||||||
** included in the packaging of this file. Please review the following
|
|
||||||
** information to ensure the GNU General Public License requirements will
|
|
||||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
||||||
**
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include "clangtidyclazyruncontrol.h"
|
|
||||||
|
|
||||||
#include "clangtidyclazyrunner.h"
|
|
||||||
#include "clangtidyclazytool.h"
|
|
||||||
|
|
||||||
using namespace ProjectExplorer;
|
|
||||||
|
|
||||||
namespace ClangTools {
|
|
||||||
namespace Internal {
|
|
||||||
|
|
||||||
ClangTidyClazyRunWorker::ClangTidyClazyRunWorker(
|
|
||||||
RunControl *runControl,
|
|
||||||
const CppTools::ClangDiagnosticConfig &diagnosticConfig,
|
|
||||||
const FileInfos &fileInfos,
|
|
||||||
bool preventBuild)
|
|
||||||
: ClangToolRunWorker(runControl, fileInfos, preventBuild)
|
|
||||||
, m_diagnosticConfig(diagnosticConfig)
|
|
||||||
{
|
|
||||||
setId("ClangTidyClazyRunner");
|
|
||||||
init();
|
|
||||||
}
|
|
||||||
|
|
||||||
QList<RunnerCreator> ClangTidyClazyRunWorker::runnerCreators()
|
|
||||||
{
|
|
||||||
QList<RunnerCreator> creators;
|
|
||||||
|
|
||||||
if (m_diagnosticConfig.clangTidyMode() != CppTools::ClangDiagnosticConfig::TidyMode::Disabled)
|
|
||||||
creators << [this]() { return createRunner<ClangTidyRunner>(); };
|
|
||||||
|
|
||||||
if (!m_diagnosticConfig.clazyChecks().isEmpty()) {
|
|
||||||
if (!qEnvironmentVariable("QTC_USE_CLAZY_STANDALONE_PATH").isEmpty())
|
|
||||||
creators << [this]() { return createRunner<ClazyStandaloneRunner>(); };
|
|
||||||
else
|
|
||||||
creators << [this]() { return createRunner<ClazyPluginRunner>(); };
|
|
||||||
}
|
|
||||||
|
|
||||||
return creators;
|
|
||||||
}
|
|
||||||
|
|
||||||
template <class T>
|
|
||||||
ClangToolRunner *ClangTidyClazyRunWorker::createRunner()
|
|
||||||
{
|
|
||||||
auto runner = new T(m_diagnosticConfig, this);
|
|
||||||
runner->init(m_temporaryDir.path(), m_environment);
|
|
||||||
connect(runner, &ClangToolRunner::finishedWithSuccess,
|
|
||||||
this, &ClangTidyClazyRunWorker::onRunnerFinishedWithSuccess);
|
|
||||||
connect(runner, &ClangToolRunner::finishedWithFailure,
|
|
||||||
this, &ClangTidyClazyRunWorker::onRunnerFinishedWithFailure);
|
|
||||||
return runner;
|
|
||||||
}
|
|
||||||
|
|
||||||
ClangTool *ClangTidyClazyRunWorker::tool()
|
|
||||||
{
|
|
||||||
return ClangTidyClazyTool::instance();
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Internal
|
|
||||||
} // namespace ClangTools
|
|
||||||
|
|
@@ -1,57 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
**
|
|
||||||
** Copyright (C) 2016 The Qt Company Ltd.
|
|
||||||
** Contact: https://www.qt.io/licensing/
|
|
||||||
**
|
|
||||||
** This file is part of Qt Creator.
|
|
||||||
**
|
|
||||||
** Commercial License Usage
|
|
||||||
** Licensees holding valid commercial Qt licenses may use this file in
|
|
||||||
** accordance with the commercial license agreement provided with the
|
|
||||||
** Software or, alternatively, in accordance with the terms contained in
|
|
||||||
** a written agreement between you and The Qt Company. For licensing terms
|
|
||||||
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
||||||
** information use the contact form at https://www.qt.io/contact-us.
|
|
||||||
**
|
|
||||||
** GNU General Public License Usage
|
|
||||||
** Alternatively, this file may be used under the terms of the GNU
|
|
||||||
** General Public License version 3 as published by the Free Software
|
|
||||||
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
||||||
** included in the packaging of this file. Please review the following
|
|
||||||
** information to ensure the GNU General Public License requirements will
|
|
||||||
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
||||||
**
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include "clangtoolruncontrol.h"
|
|
||||||
|
|
||||||
#include <cpptools/clangdiagnosticconfig.h>
|
|
||||||
|
|
||||||
namespace ClangTools {
|
|
||||||
namespace Internal {
|
|
||||||
|
|
||||||
class ClangTidyClazyRunWorker final : public ClangToolRunWorker
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
ClangTidyClazyRunWorker(ProjectExplorer::RunControl *runControl,
|
|
||||||
const CppTools::ClangDiagnosticConfig &diagnosticConfig,
|
|
||||||
const FileInfos &fileInfos,
|
|
||||||
bool preventBuild);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
QList<RunnerCreator> runnerCreators() final;
|
|
||||||
ClangTool *tool() final;
|
|
||||||
|
|
||||||
private:
|
|
||||||
template <class T> ClangToolRunner *createRunner();
|
|
||||||
|
|
||||||
private:
|
|
||||||
CppTools::ClangDiagnosticConfig m_diagnosticConfig;
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace Internal
|
|
||||||
} // namespace ClangTools
|
|
@@ -27,10 +27,10 @@
|
|||||||
|
|
||||||
#include "clangfixitsrefactoringchanges.h"
|
#include "clangfixitsrefactoringchanges.h"
|
||||||
#include "clangselectablefilesdialog.h"
|
#include "clangselectablefilesdialog.h"
|
||||||
|
#include "clangtoolruncontrol.h"
|
||||||
#include "clangtoolsconstants.h"
|
#include "clangtoolsconstants.h"
|
||||||
#include "clangtoolsdiagnosticmodel.h"
|
#include "clangtoolsdiagnosticmodel.h"
|
||||||
#include "clangtoolslogfilereader.h"
|
#include "clangtoolslogfilereader.h"
|
||||||
#include "clangtidyclazyruncontrol.h"
|
|
||||||
#include "clangtoolsdiagnosticview.h"
|
#include "clangtoolsdiagnosticview.h"
|
||||||
#include "clangtoolsprojectsettings.h"
|
#include "clangtoolsprojectsettings.h"
|
||||||
#include "clangtoolssettings.h"
|
#include "clangtoolssettings.h"
|
||||||
@@ -396,7 +396,7 @@ void ClangTidyClazyTool::startTool(FileSelection fileSelection)
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
const bool preventBuild = fileSelection == FileSelection::CurrentFile;
|
const bool preventBuild = fileSelection == FileSelection::CurrentFile;
|
||||||
auto clangTool = new ClangTidyClazyRunWorker(runControl,
|
auto clangTool = new ClangToolRunWorker(runControl,
|
||||||
getDiagnosticConfig(project),
|
getDiagnosticConfig(project),
|
||||||
fileInfos,
|
fileInfos,
|
||||||
preventBuild);
|
preventBuild);
|
||||||
|
@@ -25,12 +25,13 @@
|
|||||||
|
|
||||||
#include "clangtoolruncontrol.h"
|
#include "clangtoolruncontrol.h"
|
||||||
|
|
||||||
|
#include "clangtidyclazyrunner.h"
|
||||||
|
#include "clangtidyclazytool.h"
|
||||||
#include "clangtool.h"
|
#include "clangtool.h"
|
||||||
#include "clangtoolslogfilereader.h"
|
#include "clangtoolslogfilereader.h"
|
||||||
#include "clangtoolsprojectsettings.h"
|
#include "clangtoolsprojectsettings.h"
|
||||||
#include "clangtoolssettings.h"
|
#include "clangtoolssettings.h"
|
||||||
#include "clangtoolsutils.h"
|
#include "clangtoolsutils.h"
|
||||||
#include "clangtoolrunner.h"
|
|
||||||
|
|
||||||
#include <debugger/analyzer/analyzerconstants.h>
|
#include <debugger/analyzer/analyzerconstants.h>
|
||||||
|
|
||||||
@@ -114,17 +115,21 @@ static QStringList extraClangToolsAppendOptions()
|
|||||||
namespace ClangTools {
|
namespace ClangTools {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
|
static ClangTool *tool()
|
||||||
|
{
|
||||||
|
return ClangTidyClazyTool::instance();
|
||||||
|
}
|
||||||
|
|
||||||
class ProjectBuilder : public RunWorker
|
class ProjectBuilder : public RunWorker
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
ProjectBuilder(RunControl *runControl, ClangToolRunWorker *parent)
|
ProjectBuilder(RunControl *runControl)
|
||||||
: RunWorker(runControl), m_parent(parent)
|
: RunWorker(runControl)
|
||||||
{
|
{
|
||||||
setId("ProjectBuilder");
|
setId("ProjectBuilder");
|
||||||
}
|
}
|
||||||
|
|
||||||
void setEnabled(bool enabled) { m_enabled = enabled; }
|
void setEnabled(bool enabled) { m_enabled = enabled; }
|
||||||
|
|
||||||
bool success() const { return m_success; }
|
bool success() const { return m_success; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -145,7 +150,7 @@ private:
|
|||||||
|
|
||||||
if (buildType == BuildConfiguration::Release) {
|
if (buildType == BuildConfiguration::Release) {
|
||||||
const QString wrongMode = ClangToolRunWorker::tr("Release");
|
const QString wrongMode = ClangToolRunWorker::tr("Release");
|
||||||
const QString toolName = m_parent->tool()->name();
|
const QString toolName = tool()->name();
|
||||||
const QString title = ClangToolRunWorker::tr("Run %1 in %2 Mode?").arg(toolName, wrongMode);
|
const QString title = ClangToolRunWorker::tr("Run %1 in %2 Mode?").arg(toolName, wrongMode);
|
||||||
const QString problem = ClangToolRunWorker::tr(
|
const QString problem = ClangToolRunWorker::tr(
|
||||||
"You are trying to run the tool \"%1\" on an application in %2 mode. The tool is "
|
"You are trying to run the tool \"%1\" on an application in %2 mode. The tool is "
|
||||||
@@ -181,7 +186,6 @@ private:
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ClangToolRunWorker *m_parent;
|
|
||||||
bool m_enabled = true;
|
bool m_enabled = true;
|
||||||
bool m_success = false;
|
bool m_success = false;
|
||||||
};
|
};
|
||||||
@@ -229,16 +233,19 @@ static QDebug operator<<(QDebug debug, const AnalyzeUnits &analyzeUnits)
|
|||||||
}
|
}
|
||||||
|
|
||||||
ClangToolRunWorker::ClangToolRunWorker(RunControl *runControl,
|
ClangToolRunWorker::ClangToolRunWorker(RunControl *runControl,
|
||||||
|
const ClangDiagnosticConfig &diagnosticConfig,
|
||||||
const FileInfos &fileInfos,
|
const FileInfos &fileInfos,
|
||||||
bool preventBuild)
|
bool preventBuild)
|
||||||
: RunWorker(runControl)
|
: RunWorker(runControl)
|
||||||
, m_temporaryDir("clangtools-XXXXXX")
|
, m_temporaryDir("clangtools-XXXXXX")
|
||||||
|
, m_diagnosticConfig(diagnosticConfig)
|
||||||
, m_fileInfos(fileInfos)
|
, m_fileInfos(fileInfos)
|
||||||
{
|
{
|
||||||
if (preventBuild)
|
setId("ClangTidyClazyRunner");
|
||||||
return;
|
setSupportsReRunning(false);
|
||||||
|
|
||||||
m_projectBuilder = new ProjectBuilder(runControl, this);
|
if (!preventBuild) {
|
||||||
|
m_projectBuilder = new ProjectBuilder(runControl);
|
||||||
addStartDependency(m_projectBuilder);
|
addStartDependency(m_projectBuilder);
|
||||||
|
|
||||||
ClangToolsProjectSettings *projectSettings = ClangToolsProjectSettingsManager::getSettings(
|
ClangToolsProjectSettings *projectSettings = ClangToolsProjectSettingsManager::getSettings(
|
||||||
@@ -247,12 +254,9 @@ ClangToolRunWorker::ClangToolRunWorker(RunControl *runControl,
|
|||||||
m_projectBuilder->setEnabled(ClangToolsSettings::instance()->savedBuildBeforeAnalysis());
|
m_projectBuilder->setEnabled(ClangToolsSettings::instance()->savedBuildBeforeAnalysis());
|
||||||
else
|
else
|
||||||
m_projectBuilder->setEnabled(projectSettings->buildBeforeAnalysis());
|
m_projectBuilder->setEnabled(projectSettings->buildBeforeAnalysis());
|
||||||
}
|
}
|
||||||
|
|
||||||
void ClangToolRunWorker::init()
|
Target *target = runControl->target();
|
||||||
{
|
|
||||||
setSupportsReRunning(false);
|
|
||||||
Target *target = runControl()->target();
|
|
||||||
m_projectInfoBeforeBuild = CppTools::CppModelManager::instance()->projectInfo(target->project());
|
m_projectInfoBeforeBuild = CppTools::CppModelManager::instance()->projectInfo(target->project());
|
||||||
|
|
||||||
BuildConfiguration *buildConfiguration = target->activeBuildConfiguration();
|
BuildConfiguration *buildConfiguration = target->activeBuildConfiguration();
|
||||||
@@ -266,6 +270,23 @@ void ClangToolRunWorker::init()
|
|||||||
m_toolChainType = toolChain->typeId();
|
m_toolChainType = toolChain->typeId();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QList<RunnerCreator> ClangToolRunWorker::runnerCreators()
|
||||||
|
{
|
||||||
|
QList<RunnerCreator> creators;
|
||||||
|
|
||||||
|
if (m_diagnosticConfig.clangTidyMode() != CppTools::ClangDiagnosticConfig::TidyMode::Disabled)
|
||||||
|
creators << [this]() { return createRunner<ClangTidyRunner>(); };
|
||||||
|
|
||||||
|
if (!m_diagnosticConfig.clazyChecks().isEmpty()) {
|
||||||
|
if (!qEnvironmentVariable("QTC_USE_CLAZY_STANDALONE_PATH").isEmpty())
|
||||||
|
creators << [this]() { return createRunner<ClazyStandaloneRunner>(); };
|
||||||
|
else
|
||||||
|
creators << [this]() { return createRunner<ClazyPluginRunner>(); };
|
||||||
|
}
|
||||||
|
|
||||||
|
return creators;
|
||||||
|
}
|
||||||
|
|
||||||
void ClangToolRunWorker::start()
|
void ClangToolRunWorker::start()
|
||||||
{
|
{
|
||||||
TaskHub::clearTasks(Debugger::Constants::ANALYZERTASK_ID);
|
TaskHub::clearTasks(Debugger::Constants::ANALYZERTASK_ID);
|
||||||
@@ -505,5 +526,17 @@ void ClangToolRunWorker::finalize()
|
|||||||
runControl()->initiateStop();
|
runControl()->initiateStop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class T>
|
||||||
|
ClangToolRunner *ClangToolRunWorker::createRunner()
|
||||||
|
{
|
||||||
|
auto runner = new T(m_diagnosticConfig, this);
|
||||||
|
runner->init(m_temporaryDir.path(), m_environment);
|
||||||
|
connect(runner, &ClangToolRunner::finishedWithSuccess,
|
||||||
|
this, &ClangToolRunWorker::onRunnerFinishedWithSuccess);
|
||||||
|
connect(runner, &ClangToolRunner::finishedWithFailure,
|
||||||
|
this, &ClangToolRunWorker::onRunnerFinishedWithFailure);
|
||||||
|
return runner;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
} // namespace ClangTools
|
} // namespace ClangTools
|
||||||
|
@@ -27,8 +27,9 @@
|
|||||||
|
|
||||||
#include "clangfileinfo.h"
|
#include "clangfileinfo.h"
|
||||||
|
|
||||||
#include <projectexplorer/runcontrol.h>
|
#include <cpptools/clangdiagnosticconfig.h>
|
||||||
#include <cpptools/projectinfo.h>
|
#include <cpptools/projectinfo.h>
|
||||||
|
#include <projectexplorer/runcontrol.h>
|
||||||
#include <utils/environment.h>
|
#include <utils/environment.h>
|
||||||
#include <utils/temporarydirectory.h>
|
#include <utils/temporarydirectory.h>
|
||||||
|
|
||||||
@@ -39,7 +40,6 @@
|
|||||||
namespace ClangTools {
|
namespace ClangTools {
|
||||||
namespace Internal {
|
namespace Internal {
|
||||||
|
|
||||||
class ClangTool;
|
|
||||||
class ClangToolRunner;
|
class ClangToolRunner;
|
||||||
class ProjectBuilder;
|
class ProjectBuilder;
|
||||||
|
|
||||||
@@ -66,18 +66,13 @@ class ClangToolRunWorker : public ProjectExplorer::RunWorker
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
ClangToolRunWorker(ProjectExplorer::RunControl *runControl,
|
ClangToolRunWorker(ProjectExplorer::RunControl *runControl,
|
||||||
|
const CppTools::ClangDiagnosticConfig &diagnosticConfig,
|
||||||
const FileInfos &fileInfos,
|
const FileInfos &fileInfos,
|
||||||
bool preventBuild);
|
bool preventBuild);
|
||||||
|
|
||||||
bool success() const { return m_success; } // For testing.
|
bool success() const { return m_success; } // For testing.
|
||||||
|
|
||||||
virtual ClangTool *tool() = 0;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void init();
|
|
||||||
|
|
||||||
virtual QList<RunnerCreator> runnerCreators() = 0;
|
|
||||||
|
|
||||||
void onRunnerFinishedWithSuccess(const QString &filePath);
|
void onRunnerFinishedWithSuccess(const QString &filePath);
|
||||||
void onRunnerFinishedWithFailure(const QString &errorMessage, const QString &errorDetails);
|
void onRunnerFinishedWithFailure(const QString &errorMessage, const QString &errorDetails);
|
||||||
|
|
||||||
@@ -85,6 +80,9 @@ private:
|
|||||||
void start() final;
|
void start() final;
|
||||||
void stop() final;
|
void stop() final;
|
||||||
|
|
||||||
|
QList<RunnerCreator> runnerCreators();
|
||||||
|
template <class T> ClangToolRunner *createRunner();
|
||||||
|
|
||||||
AnalyzeUnits unitsToAnalyze();
|
AnalyzeUnits unitsToAnalyze();
|
||||||
void analyzeNextFile();
|
void analyzeNextFile();
|
||||||
|
|
||||||
@@ -101,6 +99,7 @@ protected:
|
|||||||
Utils::TemporaryDirectory m_temporaryDir;
|
Utils::TemporaryDirectory m_temporaryDir;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
CppTools::ClangDiagnosticConfig m_diagnosticConfig;
|
||||||
FileInfos m_fileInfos;
|
FileInfos m_fileInfos;
|
||||||
|
|
||||||
CppTools::ProjectInfo m_projectInfoBeforeBuild;
|
CppTools::ProjectInfo m_projectInfoBeforeBuild;
|
||||||
|
@@ -21,7 +21,6 @@ SOURCES += \
|
|||||||
clangselectablefilesdialog.cpp \
|
clangselectablefilesdialog.cpp \
|
||||||
clangtoolsdiagnosticview.cpp \
|
clangtoolsdiagnosticview.cpp \
|
||||||
clangtoolsprojectsettingswidget.cpp \
|
clangtoolsprojectsettingswidget.cpp \
|
||||||
clangtidyclazyruncontrol.cpp \
|
|
||||||
clangtidyclazyrunner.cpp \
|
clangtidyclazyrunner.cpp \
|
||||||
clangtidyclazytool.cpp \
|
clangtidyclazytool.cpp \
|
||||||
clangtool.cpp \
|
clangtool.cpp \
|
||||||
@@ -43,7 +42,6 @@ HEADERS += \
|
|||||||
clangselectablefilesdialog.h \
|
clangselectablefilesdialog.h \
|
||||||
clangtoolsdiagnosticview.h \
|
clangtoolsdiagnosticview.h \
|
||||||
clangtoolsprojectsettingswidget.h \
|
clangtoolsprojectsettingswidget.h \
|
||||||
clangtidyclazyruncontrol.h \
|
|
||||||
clangtidyclazyrunner.h \
|
clangtidyclazyrunner.h \
|
||||||
clangtidyclazytool.h \
|
clangtidyclazytool.h \
|
||||||
clangtool.h \
|
clangtool.h \
|
||||||
|
@@ -40,8 +40,6 @@ QtcPlugin {
|
|||||||
"clangselectablefilesdialog.cpp",
|
"clangselectablefilesdialog.cpp",
|
||||||
"clangselectablefilesdialog.h",
|
"clangselectablefilesdialog.h",
|
||||||
"clangselectablefilesdialog.ui",
|
"clangselectablefilesdialog.ui",
|
||||||
"clangtidyclazyruncontrol.cpp",
|
|
||||||
"clangtidyclazyruncontrol.h",
|
|
||||||
"clangtidyclazyrunner.cpp",
|
"clangtidyclazyrunner.cpp",
|
||||||
"clangtidyclazyrunner.h",
|
"clangtidyclazyrunner.h",
|
||||||
"clangtidyclazytool.cpp",
|
"clangtidyclazytool.cpp",
|
||||||
|
Reference in New Issue
Block a user