I have a problem that Xcode 3 on Mac OS X 10.5 cannot find a header file that I included in a small test project.
My project is in:
/Users/<username>/Development/testlibxmlxx
The header file (libxml++.h) I want to include is in:
/opt/local/include/libxml++-1.0/libxml++
My Header Search Paths in XCode is set to:
/opt/local/include/libxml++-1.0/**
In my CPP file I have:
#include <libxml++/libxml++.h>
When I compile I get the error:
"error: libxml++/libxml++.h: No such file or directory"
If the include line is as follows I get:
#include <libxml++.h>
"error: libxml++.h: No such file or directory"
I am new to programming on the Mac with XCode, so sometimes I do not understand how things fit together.
Anyone with ideas?