Re: Project references
Re: Project references
- Subject: Re: Project references
- From: Markian Hlynka <email@hidden>
- Date: Mon, 28 Jun 2004 10:47:38 -0600
On Jun 28, 2004, at 9:01, George Warner wrote:
On Sat, 26 Jun 2004 18:33:58 -0700, David Dunham <email@hidden>
wrote:
So I'm trying to bring my code with me to WWDC, but since I have to
copy an Xcode project to my PowerBook, none of the paths are the
same. And I can't seem to figure out how to fix them.
I've found that the quickest way to fix these is to just open the
project's
package (in the Finder) and edit the <project.pbxproj> file with any
text
editor (I usually use BBEdit). Search for "path =". You can also look
for "
refType = 0;" (this means an absolute reference) If it's not a system
or
framework reference you can change the path to project relative and the
refType to 4 (Project relative).
That's cool. How does one determine, however, which targets associate
with what?
For example, I have the below snippet from my xcode project.I see that
I have one type 4 ref, and one type 2 ref; I wonder what the type 2 ref
is associated with, as I was pretty sure I had everything set up as
project relative.
Any ideas?
Markian
//084
08FB7793FE84155DC02AAC07 = {
buildSettings = {
};
buildStyles = (
014CEA460018CE2711CA2923,
014CEA470018CE2711CA2923,
);
hasScannedForEncodings = 1;
isa = PBXProject;
mainGroup = 08FB7794FE84155DC02AAC07;
projectDirPath = "";
targets = (
8DD76F620486A84900D96B5E,
8EB42958065D59E600304E96,
8E4782C1065D801C00A48C7C,
8ED9E127068390C10049CA3D,
8ED9E1C6068398FB0049CA3D,
);
};
08FB7794FE84155DC02AAC07 = {
children = (
08FB7795FE84155DC02AAC07,
C6859E8C029090F304C91782,
0249A662FF388D9811CA2CEA,
1AB674ADFE9D54B511CA2CBB,
8ED9DE1C0678C6090049CA3D,
);
isa = PBXGroup;
name = codegeneration;
refType = 4;
sourceTree = "<group>";
};
08FB7795FE84155DC02AAC07 = {
children = (
8ED9E1CC0683990E0049CA3D,
8ED9E11E0683907D0049CA3D,
8E4782CC065D805E00A48C7C,
8EB429DC065D5AE900304E96,
8EB429AA065D5A5E00304E96,
8EB429AD065D5A5E00304E96,
);
isa = PBXGroup;
name = Source;
path = "";
refType = 2;
sourceTree = SOURCE_ROOT;
};
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.