Re: Xcode cocoa project with c++
Re: Xcode cocoa project with c++
- Subject: Re: Xcode cocoa project with c++
- From: "Shawn Erickson" <email@hidden>
- Date: Fri, 14 Dec 2007 08:59:17 -0800
On Dec 14, 2007 4:23 AM, _ _ <email@hidden> wrote:
> Hi
> i'm writing a project wihich will use mix of objective-c and c++.
> I've created a bundle with added c+ files and i'm trying to build that bundle.
> My c++ files has h/cpp extensions and bundle has option to compile files depending on the extension.
> On compile i got a lot of errors (more than 2000).
> Seems that xcode is looking through the headers of the cocoa foundation framework and find there alot of 'errors'.
> f.e.: In file NSObjCRuntime.h it has found that string
> @class NSString;
> has error
> expected unqualified-id before '@' token
>
> how i can fix that problem ?
You using a prefix header (pre-compiled header)? Likely the prefix
header isn't wrapping the import of Cocoa related frameworks, etc.
with #ifdef __OBJC__.
When in doubt I suggest you pre-compile one of the files that has
compile problems and look at what is getting included.
-Shawn
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden