Hi,
I can't tell if i'm in the right place for this topic so feel free to move it.
I'm using an excellent library thats allows me to use RegExes.
I'm using several external libraries so in my libraries folders i have one folder for each library plus a folder Regexp where this library is.
In my .h named "Analyseur.h" (placed in a "Analyseur" folder) i included Regexp like this :
#include "../Regexp/Regexp.h"
and i'm using methods and variables of the Regexp library.
I imported the regex library in my Arduino program (and the others of course) , so they are all included #include <something.h> this way.
When i compile the code i got this :
Analyseur\Analyseur.cpp.o: In function Analyseur::interpreterCommande(String)': C:\Users\gacktdear\Projet FIA-CL\Croquis\libraries\Analyseur/Analyseur.cpp:30: undefined reference to MatchState::Target(char*)'
C:\Users\gacktdear\Projet FIA-CL\Croquis\libraries\Analyseur/Analyseur.cpp:31: undefined reference to MatchState::Match(char const*, unsigned int)' Analyseur\Analyseur.cpp.o:C:\Users\gacktdear\Projet FIA-CL\Croquis\libraries\Analyseur/Analyseur.cpp:109: more undefined references to MatchState::Match(char const*, unsigned int)' follow
But when i read the Regexp.h i see this :
char Match (const char * pattern, unsigned int index = 0);
so i'm using it correctly right?
Any thoughts?