cmCommand: Remove IsDiscouraged interface.
This used to affect documentation, but does not affect the Sphinx documentation.
This commit is contained in:
parent
77c6a339af
commit
5642449a69
|
@ -23,7 +23,6 @@ public:
|
|||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const {return "build_name";}
|
||||
virtual bool IsScriptable() const { return true; }
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -101,15 +101,6 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* This determines if usage of the method is discouraged or not.
|
||||
* This is currently only used for generating the documentation.
|
||||
*/
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is used to avoid including this command
|
||||
* in documentation. This is mainly used by
|
||||
|
|
|
@ -50,12 +50,6 @@ public:
|
|||
*/
|
||||
virtual bool IsScriptable() const { return true; }
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmExecProgramCommand, cmCommand);
|
||||
private:
|
||||
static bool RunCommand(const char* command, std::string& output,
|
||||
|
|
|
@ -22,7 +22,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "export_library_dependencies";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
|
||||
virtual void FinalPass();
|
||||
virtual bool HasFinalPass() const { return true; }
|
||||
|
|
|
@ -52,12 +52,6 @@ public:
|
|||
virtual void FinalPass();
|
||||
virtual bool HasFinalPass() const { return !this->IsFilesForm; }
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmInstallFilesCommand, cmCommand);
|
||||
|
||||
protected:
|
||||
|
|
|
@ -53,12 +53,6 @@ public:
|
|||
|
||||
virtual bool HasFinalPass() const { return true; }
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmInstallProgramsCommand, cmCommand);
|
||||
|
||||
protected:
|
||||
|
|
|
@ -44,12 +44,6 @@ public:
|
|||
*/
|
||||
virtual std::string GetName() const { return "install_targets";}
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmInstallTargetsCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -44,12 +44,6 @@ public:
|
|||
*/
|
||||
virtual std::string GetName() const { return "link_libraries";}
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmLinkLibrariesCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const {return "load_command";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
cmTypeMacro(cmLoadCommandCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -51,12 +51,6 @@ public:
|
|||
*/
|
||||
virtual bool IsScriptable() const { return true; }
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmMakeDirectoryCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "output_required_files";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
|
||||
void ListDependencies(cmDependInformation const *info,
|
||||
FILE *fout,
|
||||
|
|
|
@ -47,12 +47,6 @@ public:
|
|||
*/
|
||||
virtual std::string GetName() const {return "remove";}
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmRemoveCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -44,12 +44,6 @@ public:
|
|||
*/
|
||||
virtual std::string GetName() const { return "subdirs";}
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmSubdirCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -21,7 +21,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "subdir_depends";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
cmTypeMacro(cmSubdirDependsCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
|
@ -23,7 +23,6 @@ public:
|
|||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "use_mangled_mesa";}
|
||||
virtual bool IsScriptable() const { return true; }
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
protected:
|
||||
void CopyAndFullPathMesaHeader(const char* source,
|
||||
const char* outdir);
|
||||
|
|
|
@ -22,7 +22,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "utility_source";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -22,7 +22,6 @@ public:
|
|||
virtual bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus &status);
|
||||
virtual std::string GetName() const { return "variable_requires";}
|
||||
virtual bool IsDiscouraged() const { return true; }
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -46,12 +46,6 @@ public:
|
|||
*/
|
||||
virtual std::string GetName() const { return "write_file";}
|
||||
|
||||
/** This command is kept for compatibility with older CMake versions. */
|
||||
virtual bool IsDiscouraged() const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
cmTypeMacro(cmWriteFileCommand, cmCommand);
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue