MakefileGenerator::processSources() doesn't need to be virtual.
Only VcprojGenerator over-rode it; and did so with a replacement identical to the one on the base, so there was no point to it. Change-Id: I5b899372247809c82b1cae25817e06c5849cd10d Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
This commit is contained in:
parent
d6b45853f5
commit
b9ed5b9acf
@ -185,7 +185,7 @@ protected:
|
||||
virtual bool doDepends() const { return Option::mkfile::do_deps; }
|
||||
|
||||
void filterIncludedFiles(const char *);
|
||||
virtual void processSources() {
|
||||
void processSources() {
|
||||
filterIncludedFiles("SOURCES");
|
||||
filterIncludedFiles("GENERATED_SOURCES");
|
||||
}
|
||||
|
@ -75,7 +75,6 @@ public:
|
||||
protected:
|
||||
virtual VCProjectWriter *createProjectWriter();
|
||||
virtual bool doDepends() const { return false; } //never necesary
|
||||
virtual void processSources() { filterIncludedFiles("SOURCES"); filterIncludedFiles("GENERATED_SOURCES"); }
|
||||
using Win32MakefileGenerator::replaceExtraCompilerVariables;
|
||||
virtual QString replaceExtraCompilerVariables(const QString &, const QStringList &, const QStringList &, ReplaceFor);
|
||||
virtual bool supportsMetaBuild() { return true; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user