I used the C ++ library without problems for projects built using Xcode 3, but now I am having problems building projects built using Xcode 4.
Drop the library into the Xcode 4 project and it builds fine, but as soon as I #include , I get the error "Lexical or Preprocessor Issue", more specifically the "line file" is not found, in line 4 of its main header file.
On closer inspection, the error indicates that the 'string' file not found in ~/my project directory/include/mainheader.h
I tried the listed solutions here , but no one worked.
So he thinks the header file is in my project directory, but this is obviously the C / C ++ header ... How can I tell Xcode to look for these C / C ++ headers?
source share