diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-07 22:36:34 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-02-07 22:36:34 (GMT) |
commit | 0bc51d181d62ae64c69d09aaf748aeee904645c8 (patch) | |
tree | 71d40ccad111da1386ba426f40399896da7af84f /Source/cmXCodeObject.h | |
parent | 16b9edd17b89209b4a71804e252bfd5613d224e5 (diff) | |
download | CMake-0bc51d181d62ae64c69d09aaf748aeee904645c8.zip CMake-0bc51d181d62ae64c69d09aaf748aeee904645c8.tar.gz CMake-0bc51d181d62ae64c69d09aaf748aeee904645c8.tar.bz2 |
ENH: fix bug in target linking
Diffstat (limited to 'Source/cmXCodeObject.h')
-rw-r--r-- | Source/cmXCodeObject.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmXCodeObject.h b/Source/cmXCodeObject.h index 61cda16..8999073 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; |