diff options
author | Brad King <brad.king@kitware.com> | 2003-03-19 15:16:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-03-19 15:16:57 (GMT) |
commit | 33d55456c3d1adbdff0b9cdffed38c3062749ceb (patch) | |
tree | d4b288035519416beeac2ccdbc7b253a36b16438 /Source/cmStringCommand.h | |
parent | 60976ebe046013ae6abe55b6f113e1ae0f360c5a (diff) | |
download | CMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.zip CMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.tar.gz CMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.tar.bz2 |
BUG: Command should be inherited.
Diffstat (limited to 'Source/cmStringCommand.h')
-rw-r--r-- | Source/cmStringCommand.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index 8123b67..7be05db 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -42,6 +42,12 @@ public: virtual bool InitialPass(std::vector<std::string> const& 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 "STRING";} |