diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-02 20:29:32 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-09-02 20:29:32 (GMT) |
commit | 6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75 (patch) | |
tree | b25e19e52ff57671a63be2fb5f76e0dc87dd2995 /Source/cmXCodeObject.cxx | |
parent | 389333967b157e40b6846c964699a13ab5ba6c99 (diff) | |
download | CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.zip CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.tar.gz CMake-6b4c142c7dfe60e7e9b5cccfc4e44ae808b54b75.tar.bz2 |
ENH: add real support for Xcode21
Diffstat (limited to 'Source/cmXCodeObject.cxx')
-rw-r--r-- | Source/cmXCodeObject.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx index b315b23..02cf977 100644 --- a/Source/cmXCodeObject.cxx +++ b/Source/cmXCodeObject.cxx @@ -8,7 +8,7 @@ const char* cmXCodeObject::PBXTypeNames[] = { "PBXTargetDependency", "PBXShellScriptBuildPhase", "PBXResourcesBuildPhase", "PBXApplicationReference", "PBXExecutableFileReference", "PBXLibraryReference", "PBXToolTarget", - "PBXLibraryTarget", "PBXAggregateTarget", + "PBXLibraryTarget", "PBXAggregateTarget", "XCBuildConfiguration", "XCConfigurationList", "None" }; @@ -68,7 +68,9 @@ void cmXCodeObject::Indent(int level, std::ostream& out) void cmXCodeObject::Print(std::ostream& out) { cmXCodeObject::Indent(2, out); - out << m_Id << " = {\n"; + out << m_Id << " "; + this->PrintComment(out); + out << " = {\n"; std::map<cmStdString, cmXCodeObject*>::iterator i; for(i = m_ObjectAttributes.begin(); i != m_ObjectAttributes.end(); ++i) { |