Re: Preventing Xcode to include header files
Re: Preventing Xcode to include header files
- Subject: Re: Preventing Xcode to include header files
- From: Evan Schoenberg <email@hidden>
- Date: Sat, 30 Oct 2004 03:32:36 -0500
To remove them automatically, which is what I do, add a Shell Script
Build Phase to your application target (with Development Only checked
if you want) which has the shell script:
#!/bin/sh
find $BUILD_ROOT/$WRAPPER_NAME -name '*.h' -print0 | xargs -0 rm -rf
-Evan
On Oct 29, 2004, at 5:06 PM, Jesus De Meyer wrote:
Is there a way I can prevent Xcode from including the header files
inside the application bundle? I know I can just remove them, but this
can get very annoying.
PS: I know this should be in the Xcode list, but I don't want to
subscribe to that list just to ask this one question.
Thanks
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden