summaryrefslogtreecommitdiff
path: root/Source/cmXCodeObject.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-02-07 17:36:34 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2005-02-07 17:36:34 -0500
commit0bc51d181d62ae64c69d09aaf748aeee904645c8 (patch)
tree71d40ccad111da1386ba426f40399896da7af84f /Source/cmXCodeObject.h
parent16b9edd17b89209b4a71804e252bfd5613d224e5 (diff)
downloadcmake-0bc51d181d62ae64c69d09aaf748aeee904645c8.tar.gz
ENH: fix bug in target linking
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r--Source/cmXCodeObject.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h
index 61cda1632f..89990737f5 100644
--- a/Source/cmXCodeObject.h
+++ b/Source/cmXCodeObject.h
@@ -37,6 +37,10 @@ public:
{
m_Object = value;
}
+ cmXCodeObject* GetObject()
+ {
+ return m_Object;
+ }
void AddObject(cmXCodeObject* value)
{
m_List.push_back(value);
@@ -87,6 +91,7 @@ public:
{
m_PBXTargetDependency = d;
}
+ void CopyAttributes(cmXCodeObject* );
private:
cmTarget* m_cmTarget;