Where does Xcode look for header files?

boyfarrell

Registered
Hi everybody,

I have installed GSL GNU Scientific Library using the Darwin Ports Application.

The files are built and placed in folder call 'gsl' in directory /opt/local/include/. How do I tell Xcode to find the new GSL headers in this include directory? So that I can include as normal.
Code:
#import <gsl/gsl_math.h>

I have tried adding the directory to my PATH by adding it to my .profile. I have also added the directory to my environment.plist located in ~/MacOSX folder. Xcode just gives the "No such file or directory" error.

Any ideas?

Daniel.
 
I haven't used XCode in a long time, and maybe you said this in a different way. But wouldn't you have to include that directory in your XCode project? I couldn't tell you the steps to do it though.

Most IDEs work that way.
 
Go to Project->Edit Project Settings. Choose the Build tab, and do a search for the item "Header search paths". Add /opt/local/include to that.
 
Back
Top