nxtbgthng / OAuth2Client

Client library for OAuth2 (currently built against draft 10 of the OAuth2 spec)
855 stars 217 forks source link

Missing NXOAuth2.h file #90

Open squareelan opened 11 years ago

squareelan commented 11 years ago

I followed the instructions for IOS projects and it seems like xcode can't find the

NXOAuth2.h file because the libOAuth2Client.a is in red. What do i need to do to

resolve this issue?

stigi commented 11 years ago

.h files are header files. The .a file is the compiled library, as a binary file. That the .a file is red just means that it hasn't been build yet, which is fine. It will be build if it's a dependency of your project.

That the .h files can't be found is a problem with the header search path build setting. Can you have a look at that?