Creating libraries in Arduino sketch folder

Thanks @pYro_65, just figured it out after getting stuck somewhere else for a couple of hours :smiley:
I saw someone using the following in his library:

#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif

Which may be a even better solution.
But changing the library name is pretty bad for backwards compatibility though