Re: Defining code based on build target
Re: Defining code based on build target
- Subject: Re: Defining code based on build target
- From: Kyle Sluder <email@hidden>
- Date: Wed, 18 May 2011 13:28:11 -0700
On May 18, 2011, at 1:09 PM, Development <email@hidden> wrote:
> I have a version of an application that I want to contain different code based on the builded target.
> for instance I have a lite version. After defining the ISFREE value in the preprocessor macros... I tried using:
>
> #if ISFREE
>
> NSLog(@"It's Free");
>
>
> #endif
>
>
> Of course the line never prints.
> Is it possible to compile specific code based on target_name or using the preprocessor macros? Or am I wasting my time with this?
Where did you define ISFREE? If you want to make it target dependent, you need to add it to the target's build settings.
This is really more of a tools question than a Cocoa question.
--Kyle Sluder_______________________________________________
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