mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-25 10:18:34 -06:00
ENH: depends work between targets
This commit is contained in:
@@ -2,20 +2,24 @@
|
||||
#define cmXCodeObject_h
|
||||
|
||||
#include "cmStandardIncludes.h"
|
||||
class cmTarget;
|
||||
|
||||
class cmXCodeObject
|
||||
{
|
||||
public:
|
||||
enum Type { OBJECT_LIST, STRING, ATTRIBUTE_GROUP, OBJECT_REF, OBJECT };
|
||||
enum PBXType { PBXGroup, PBXBuildStyle, PBXProject, PBXHeadersBuildPhase,
|
||||
PBXSourcesBuildPhase, PBXFrameworksBuildPhase, PBXNativeTarget,
|
||||
PBXFileReference, PBXBuildFile, PBXContainerItemProxy, PBXTargetDependency,
|
||||
PBXShellScriptBuildPhase, PBXResourcesBuildPhase, PBXApplicationReference,
|
||||
PBXExecutableFileReference, PBXLibraryReference, PBXToolTarget, PBXLibraryTarget,
|
||||
PBXSourcesBuildPhase, PBXFrameworksBuildPhase,
|
||||
PBXNativeTarget, PBXFileReference, PBXBuildFile,
|
||||
PBXContainerItemProxy, PBXTargetDependency,
|
||||
PBXShellScriptBuildPhase, PBXResourcesBuildPhase,
|
||||
PBXApplicationReference, PBXExecutableFileReference,
|
||||
PBXLibraryReference, PBXToolTarget, PBXLibraryTarget,
|
||||
PBXAggregateTarget,
|
||||
None
|
||||
};
|
||||
static const char* PBXTypeNames[];
|
||||
|
||||
~cmXCodeObject();
|
||||
cmXCodeObject(PBXType ptype, Type type);
|
||||
void SetString(const char* s)
|
||||
{
|
||||
@@ -44,7 +48,25 @@ public:
|
||||
{
|
||||
return m_Id.c_str();
|
||||
}
|
||||
cmTarget* GetcmTarget()
|
||||
{
|
||||
return m_cmTarget;
|
||||
}
|
||||
void SetcmTarget(cmTarget* t)
|
||||
{
|
||||
m_cmTarget = t;
|
||||
}
|
||||
cmXCodeObject* GetObject(const char* name)
|
||||
{
|
||||
if(m_ObjectAttributes.count(name))
|
||||
{
|
||||
return m_ObjectAttributes[name];
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
private:
|
||||
cmTarget* m_cmTarget;
|
||||
Type m_Type;
|
||||
cmStdString m_Id;
|
||||
PBXType m_IsA;
|
||||
|
||||
Reference in New Issue
Block a user