I am using an open source project that will be part of my application that I need to add to xcode and have it compile.
I take the src folder and add it to XCode and there are two options..
Recursively create groups for any added folders
This creates a yellow folder in XCode and attempts to compile, but XCode cannot find any of the header file paths...
the includes in the source files look like this,
#include <checker/impl/utils/Logging.h> and i get the error no such file or directory
The other option adds the source as a blue folder, but does not compile the code, simply just copies the source folder to the target.
So whats the proper way of adding this, and keeping all the folder directories intact and having XCode know where everything is?
I take the src folder and add it to XCode and there are two options..
Recursively create groups for any added folders
This creates a yellow folder in XCode and attempts to compile, but XCode cannot find any of the header file paths...
the includes in the source files look like this,
#include <checker/impl/utils/Logging.h> and i get the error no such file or directory
The other option adds the source as a blue folder, but does not compile the code, simply just copies the source folder to the target.
So whats the proper way of adding this, and keeping all the folder directories intact and having XCode know where everything is?