I'm new to Arduino/C development (coming from a JavaScript/Ruby environment), but I was wondering if it was possible to include a library from a custom folder within a sketch?
So this is my situation;
project.ino
libs/
MyNewLib/
MyNewLib.h
MyNewLib.ccp
Now my question is;is: how can I include my custom library? I've tried several variations on this;
# project.ino
#include <libs/MyNewLib/MyNewLib.h>
#include "libs/MyNewLib/MyNewLib.h"
#include <./libs/MyNewLib/MyNewLib.h>
#include "./libs/MyNewLib/MyNewLib.h"
But notnone of them works. Can anyone tell me orif this is possible? I've looked into this question around the web, but I can't find any satisfying answer. Hopefully you guys can help.
Cheers.
UPDATE
I'm aware you can put your libraries in your global libraries folder, but I want them in my local project folder. I want to share them through git with my team.