Skip navigation.
 
mlRe: Preventing Xcode to include header files
FROM : Evan Schoenberg
DATE : Sat Oct 30 10:32:36 2004

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_removed>)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/cocoa-dev/evan.<email_removed>
>
> This email sent to evan.<email_removed>
>

Related mailsAuthorDate
mlPreventing Xcode to include header files Jesus De Meyer Oct 30, 00:06
mlRe: Preventing Xcode to include header files Andreas Mayer Oct 30, 04:05
mlRe: Preventing Xcode to include header files Ricky Sharp Oct 30, 04:39
mlRe: Preventing Xcode to include header files Nick Zitzmann Oct 30, 05:12
mlRe: Preventing Xcode to include header files Evan Schoenberg Oct 30, 10:32