diff options
Diffstat (limited to 'Source/cmEndIfCommand.h')
-rw-r--r-- | Source/cmEndIfCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmEndIfCommand.h b/Source/cmEndIfCommand.h index ad399c7..c19aac1 100644 --- a/Source/cmEndIfCommand.h +++ b/Source/cmEndIfCommand.h @@ -41,6 +41,12 @@ public: virtual bool Invoke(std::vector<std::string>& args); /** + * This determines if the command gets propagated down + * to makefiles located in subdirectories. + */ + virtual bool IsInherited() {return true;} + + /** * The name of the command as specified in CMakeList.txt. */ virtual const char* GetName() { return "ENDIF";} |