diff options
author | Brad King <brad.king@kitware.com> | 2001-03-01 21:47:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-01 21:47:05 (GMT) |
commit | dc72655414eb8a611524b6480dad92d46b08fecb (patch) | |
tree | eae01169b53d5e67156e5562ed53b4e447947658 /Source/cmCableDefineSetCommand.h | |
parent | af30fe67458fd26054696ce018f7ae6faaebcca4 (diff) | |
download | CMake-dc72655414eb8a611524b6480dad92d46b08fecb.zip CMake-dc72655414eb8a611524b6480dad92d46b08fecb.tar.gz CMake-dc72655414eb8a611524b6480dad92d46b08fecb.tar.bz2 |
ENH: Change to new CABLE command architecture. CABLE configuration code is now generated on the first pass, during the Invoke() calls.
Diffstat (limited to 'Source/cmCableDefineSetCommand.h')
-rw-r--r-- | Source/cmCableDefineSetCommand.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmCableDefineSetCommand.h b/Source/cmCableDefineSetCommand.h index 8d002cf..618990b 100644 --- a/Source/cmCableDefineSetCommand.h +++ b/Source/cmCableDefineSetCommand.h @@ -48,7 +48,7 @@ public: * to makefiles located in subdirectories. */ virtual bool IsInherited() - {return true;} + { return true; } /** * The name of the command as specified in CMakeList.txt. @@ -75,13 +75,11 @@ public: "commands by a '$' immediately followed by the set name (ex. $SetName)."; } - virtual void WriteConfiguration(std::ostream&) const; - cmTypeMacro(cmCableDefineSetCommand, cmCableCommand); private: + void WriteConfiguration() const; std::string GenerateTag(const std::string&) const; - private: typedef std::pair<std::string, std::string> Element; typedef std::vector<Element> Elements; |