I separated my header files in folders like:
libraryA
|-libA1.h
|-libA2.h
libraryB
|-libB1.h
|-libB2.h
Xcode however removes the path by default, so
#include "libraryA/libA1.h"
#include "libraryB/libB1.h"
doesn't work, only:
#include "libA1.h"
#include "libB1.h"
How can I make xcode preserve the path names for includes?