cmGlobalGenerator: De-virtualize methods with no overrides.
This commit is contained in:
parent
444bc34978
commit
aaeec642ca
|
@ -121,7 +121,7 @@ public:
|
||||||
* Try running cmake and building a file. This is used for dynamically
|
* Try running cmake and building a file. This is used for dynamically
|
||||||
* loaded commands, not as part of the usual build process.
|
* loaded commands, not as part of the usual build process.
|
||||||
*/
|
*/
|
||||||
virtual int TryCompile(const std::string& srcdir, const std::string& bindir,
|
int TryCompile(const std::string& srcdir, const std::string& bindir,
|
||||||
const std::string& projectName,
|
const std::string& projectName,
|
||||||
const std::string& targetName,
|
const std::string& targetName,
|
||||||
bool fast, std::string& output, cmMakefile* mf);
|
bool fast, std::string& output, cmMakefile* mf);
|
||||||
|
@ -371,7 +371,7 @@ protected:
|
||||||
typedef std::vector<cmLocalGenerator*> GeneratorVector;
|
typedef std::vector<cmLocalGenerator*> GeneratorVector;
|
||||||
// for a project collect all its targets by following depend
|
// for a project collect all its targets by following depend
|
||||||
// information, and also collect all the targets
|
// information, and also collect all the targets
|
||||||
virtual void GetTargetSets(TargetDependSet& projectTargets,
|
void GetTargetSets(TargetDependSet& projectTargets,
|
||||||
TargetDependSet& originalTargets,
|
TargetDependSet& originalTargets,
|
||||||
cmLocalGenerator* root, GeneratorVector const&);
|
cmLocalGenerator* root, GeneratorVector const&);
|
||||||
bool IsRootOnlyTarget(cmTarget* target) const;
|
bool IsRootOnlyTarget(cmTarget* target) const;
|
||||||
|
@ -446,7 +446,7 @@ protected:
|
||||||
TargetMap ImportedTargets;
|
TargetMap ImportedTargets;
|
||||||
std::vector<cmGeneratorExpressionEvaluationFile*> EvaluationFiles;
|
std::vector<cmGeneratorExpressionEvaluationFile*> EvaluationFiles;
|
||||||
|
|
||||||
virtual const char* GetPredefinedTargetsFolder();
|
const char* GetPredefinedTargetsFolder();
|
||||||
virtual bool UseFolderProperty();
|
virtual bool UseFolderProperty();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue