views:

846

answers:

2

How it looks?

thanks

+5  A: 

All paths in Build Settings are assumed relative to the directory that contains the .xcodeproj file. Use the standard Unix path tokens

.   project directory
..  parent directory

So if your project file is trunk/Mac/proj.xcodeproj, and your headers are in trunk/Headers/foo.h, you would add ../Headers to your Header Search Paths.

cdespinosa
+2  A: 

Also there are two paths: $SRCROOT and $SDKROOT.

Mike Chen