 |
|
 |
|
Next: fs or ft: miscellaneous computer items
|
| Author |
Message |
External

Since: Jun 04, 2005 Posts: 3
|
(Msg. 1) Posted: Sat Jun 04, 2005 12:55 pm
Post subject: [Xcode] management of header-files Archived from groups: comp>sys>mac>programmer>tools (more info?)
|
|
|
Hi
Excuse me for my bad english, i am a stupid german...
My problem is the management of my header-files. I would like them to be
in the subfolder "az", but i don't see any option in Xcode, where i can
define this. I can define groups, but this seems not to be right.
While compiling, there are many errors because of the missing headers
because they are not in the subfolder "az" (include is <az/string.h> for
example). Another silly problem is, that cstring or other files include
my string.h now.
Greets
Albert >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
External

Since: May 28, 2005 Posts: 41
|
(Msg. 2) Posted: Sat Jun 04, 2005 5:55 pm
Post subject: Re: [Xcode] management of header-files [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Albert Zeyer wrote:
> My problem is the management of my header-files. I would like them to
> be in the subfolder "az", but i don't see any option in Xcode, where
> i can define this.
header search paths. in "targets," pick the app you're building, then hit
the blue "info" button. that brings up a window, and you want to hit the
"build" tab. then you have to work the menu on the left to get to "search
paths."
as UIs go, it's pretty awful. small wonder you couldn't find it. i've set
search paths several times and it took me ten minutes to find it.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
External

Since: Jan 03, 2005 Posts: 79
|
(Msg. 3) Posted: Sun Jun 05, 2005 9:45 am
Post subject: Re: [Xcode] management of header-files [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <d7sj8i$1jd$04$1@news.t-online.com>,
Albert Zeyer <ich.RemoveThis@az2000.de> wrote:
> While compiling, there are many errors because of the missing headers
> because they are not in the subfolder "az" (include is <az/string.h> for
> example). Another silly problem is, that cstring or other files include
> my string.h now.
You should not be using <> to reference project-local files; use "" for
that. As far as the search path solution, the workaround would be to
use "." and not "az", since your include already contains that.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
External

Since: Jun 04, 2005 Posts: 3
|
(Msg. 4) Posted: Sun Jun 05, 2005 12:55 pm
Post subject: Re: [Xcode] management of header-files [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Doc O'Leary wrote:
> In article <d7sj8i$1jd$04$1@news.t-online.com>,
> Albert Zeyer <ich.TakeThisOut@az2000.de> wrote:
>
>
>>While compiling, there are many errors because of the missing headers
>>because they are not in the subfolder "az" (include is <az/string.h> for
>>example). Another silly problem is, that cstring or other files include
>>my string.h now.
>
>
> You should not be using <> to reference project-local files; use "" for
> that. As far as the search path solution, the workaround would be to
> use "." and not "az", since your include already contains that.
I am working on a framework (but by the way I don't set is as a
framework in Xcode, there it is a dynamic library), so every other
project based on this framework will also use the includes like
<az/...>. I think, it is confusing, if the includes in the framework
itself seems different. Because it is a framework, this is another
reason to put the headers into a subfolder.
See my answer to Johnny, then you can better understand my problem.
Greets
Albert<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
External

Since: Jan 03, 2005 Posts: 79
|
(Msg. 5) Posted: Mon Jun 06, 2005 10:25 am
Post subject: Re: [Xcode] management of header-files [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <d7v8o5$b7m$05$1@news.t-online.com>,
Albert Zeyer <ich DeleteThis @az2000.de> wrote:
> I am working on a framework (but by the way I don't set is as a
> framework in Xcode, there it is a dynamic library), so every other
> project based on this framework will also use the includes like
> <az/...>. I think, it is confusing, if the includes in the framework
> itself seems different. Because it is a framework, this is another
> reason to put the headers into a subfolder.
>
> See my answer to Johnny, then you can better understand my problem.
It seems like your problem is that you want to do things wrong. Best of
luck with that.<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
External

Since: Jun 04, 2005 Posts: 3
|
(Msg. 6) Posted: Wed Jun 08, 2005 8:55 pm
Post subject: Re: [Xcode] management of header-files [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Doc O'Leary wrote:
> In article <d7v8o5$b7m$05$1@news.t-online.com>,
> Albert Zeyer <ich.TakeThisOut@az2000.de> wrote:
>
>
>>I am working on a framework (but by the way I don't set is as a
>>framework in Xcode, there it is a dynamic library), so every other
>>project based on this framework will also use the includes like
>><az/...>. I think, it is confusing, if the includes in the framework
>>itself seems different. Because it is a framework, this is another
>>reason to put the headers into a subfolder.
>>
>>See my answer to Johnny, then you can better understand my problem.
>
>
> It seems like your problem is that you want to do things wrong. Best of
> luck with that.
What exactly is wrong of what i want to do?
It is wrong to want the header files to be in a subfolder? I think most
projects use folders to manage the header-files and I hope every
framework has the headers in a subfolder to avoid problems with same
named files. (wxWidgets have all includes in <wx/...>)
I think you think of my management of the hole project in Xcode when you
say I want to do things wrong. I hope you understand, which type of
project this is, so how do I do this right?
Greets
Albert<!-- ~MESSAGE_AFTER~ --> >> Stay informed about: [Xcode] management of header-files |
|
| Back to top |
|
 |  |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|