ENH: Make more commands scriptable

This commit is contained in:
Andy Cedilnik 2004-02-22 22:07:02 -05:00
parent 183273bea2
commit 007d2bbc50
14 changed files with 70 additions and 0 deletions

View File

@ -47,6 +47,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -38,6 +38,11 @@ public:
*/
virtual const char* GetName() { return "CONFIGURE_FILE";}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* Succinct documentation.
*/

View File

@ -47,6 +47,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -47,6 +47,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -49,6 +49,11 @@ public:
virtual const char* GetName()
{return "EXEC_PROGRAM";}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* Succinct documentation.
*/

View File

@ -50,6 +50,11 @@ public:
*/
virtual bool IsInherited() { return false; }
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -50,6 +50,11 @@ public:
*/
virtual bool IsInherited() {return false;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -50,6 +50,11 @@ public:
*/
virtual bool IsInherited() {return false;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -50,6 +50,11 @@ public:
*/
virtual bool IsInherited() { return false; }
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -48,6 +48,11 @@ public:
*/
virtual bool IsInherited() { return true; }
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -50,6 +50,11 @@ public:
*/
virtual const char* GetName() { return "MAKE_DIRECTORY";}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* Succinct documentation.
*/

View File

@ -47,6 +47,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -47,6 +47,11 @@ public:
*/
virtual bool IsInherited() {return true;}
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/

View File

@ -40,6 +40,11 @@ public:
*/
virtual bool InitialPass(std::vector<std::string> const& args);
/**
* This determines if the command is invoked when in script mode.
*/
virtual bool IsScriptable() { return true; }
/**
* The name of the command as specified in CMakeList.txt.
*/