From 33d55456c3d1adbdff0b9cdffed38c3062749ceb Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 19 Mar 2003 10:16:57 -0500 Subject: [PATCH] BUG: Command should be inherited. --- Source/cmStringCommand.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/cmStringCommand.h b/Source/cmStringCommand.h index 8123b678b..7be05db6a 100644 --- a/Source/cmStringCommand.h +++ b/Source/cmStringCommand.h @@ -41,6 +41,12 @@ public: */ virtual bool InitialPass(std::vector 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. */