Autotools: Remove dead code

Change-Id: Ie34b1560992a3466568be80ddc2a234e9011a1ce
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Tobias Hunger
2019-08-13 10:27:34 +02:00
parent 0f1fcb72e2
commit afb4fb474f
2 changed files with 0 additions and 10 deletions

View File

@@ -220,14 +220,6 @@ void AutotoolsProject::onFileChanged(const QString &file)
loadProjectTree(); loadProjectTree();
} }
QStringList AutotoolsProject::buildTargets() const
{
QStringList targets;
targets.append(QLatin1String("all"));
targets.append(QLatin1String("clean"));
return targets;
}
static QStringList filterIncludes(const QString &absSrc, const QString &absBuild, static QStringList filterIncludes(const QString &absSrc, const QString &absBuild,
const QStringList &in) const QStringList &in)
{ {

View File

@@ -56,8 +56,6 @@ public:
explicit AutotoolsProject(const Utils::FilePath &fileName); explicit AutotoolsProject(const Utils::FilePath &fileName);
~AutotoolsProject() override; ~AutotoolsProject() override;
QStringList buildTargets() const;
protected: protected:
RestoreResult fromMap(const QVariantMap &map, QString *errorMessage) override; RestoreResult fromMap(const QVariantMap &map, QString *errorMessage) override;