ENH: fix warnings
This commit is contained in:
parent
496724ced4
commit
4bc584419e
|
@ -1565,7 +1565,6 @@ void cmGlobalXCodeGenerator::AddDependAndLinkInformation(cmXCodeObject* target)
|
||||||
linkDirs += this->XCodeEscapePath(libDir->c_str());
|
linkDirs += this->XCodeEscapePath(libDir->c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmXCodeObject* bset = target->GetObject("buildSettings");
|
|
||||||
this->AppendBuildSettingAttribute(target, "LIBRARY_SEARCH_PATHS", linkDirs.c_str());
|
this->AppendBuildSettingAttribute(target, "LIBRARY_SEARCH_PATHS", linkDirs.c_str());
|
||||||
// now add the link libraries
|
// now add the link libraries
|
||||||
for(std::vector<cmStdString>::iterator lib = linkItems.begin();
|
for(std::vector<cmStdString>::iterator lib = linkItems.begin();
|
||||||
|
|
|
@ -19,7 +19,7 @@ public:
|
||||||
None
|
None
|
||||||
};
|
};
|
||||||
static const char* PBXTypeNames[];
|
static const char* PBXTypeNames[];
|
||||||
~cmXCodeObject();
|
virtual ~cmXCodeObject();
|
||||||
cmXCodeObject(PBXType ptype, Type type);
|
cmXCodeObject(PBXType ptype, Type type);
|
||||||
Type GetType() { return m_Type;}
|
Type GetType() { return m_Type;}
|
||||||
PBXType GetIsA() { return m_IsA;}
|
PBXType GetIsA() { return m_IsA;}
|
||||||
|
|
Loading…
Reference in New Issue