summaryrefslogtreecommitdiffstats
path: root/Source/cmSourceGroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmSourceGroup.h')
-rw-r--r--Source/cmSourceGroup.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmSourceGroup.h b/Source/cmSourceGroup.h
index ebd23b1..6c3fe4d 100644
--- a/Source/cmSourceGroup.h
+++ b/Source/cmSourceGroup.h
@@ -39,12 +39,13 @@ public:
{
CommandFiles() {}
CommandFiles(const CommandFiles& r):
- m_Outputs(r.m_Outputs), m_Depends(r.m_Depends) {}
+ m_Comment(r.m_Comment), m_Outputs(r.m_Outputs), m_Depends(r.m_Depends) {}
void Merge(const CommandFiles &r);
std::string m_Command;
std::string m_Arguments;
+ std::string m_Comment;
std::set<std::string> m_Outputs;
std::set<std::string> m_Depends;
};