Sorry, I did not explain it correctly.
In order for the module to be built, it needs an external library called
sqlcipher.
The library does not come with the module. It is my job to have it installed (which I do).
Once installed, the library goes to /usr/include/sqlcipher and the module tries to include sqlite3.h (located at /usr/include/sqlcipher/sqlite3.h)
Normally, the C compiler is aware of anything placed in /usr/include and can include it.
From what I understand, when building a recipe, it runs in an isolated environment and that obviously would be the cause of this problem.
Is there any way to make it aware of the path /usr/include/sqlcipher ?