summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-03-19 15:16:57 (GMT)
committerBrad King <brad.king@kitware.com>2003-03-19 15:16:57 (GMT)
commit33d55456c3d1adbdff0b9cdffed38c3062749ceb (patch)
treed4b288035519416beeac2ccdbc7b253a36b16438
parent60976ebe046013ae6abe55b6f113e1ae0f360c5a (diff)
downloadCMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.zip
CMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.tar.gz
CMake-33d55456c3d1adbdff0b9cdffed38c3062749ceb.tar.bz2
BUG: Command should be inherited.
-rw-r--r--Source/cmStringCommand.h6
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";}