Including libraries does not work in platformio
Dantali0n opened this issue · 1 comments
Dantali0n commented
Hello, Seems the way that you have build your Arduino libraries causes the imports to fail in PlatformIO.
I would appreciate if we could investigate and resolve.
Below is my platformio.ini
[env:pro-nano]
platform = atmelavr
board = nanoatmega328
framework = arduino
build_flags = -Wall -std=c++17 -g3 -D LUMIUS_DEVICE=2
upload_port = /dev/ttyUSB*
lib_deps =
rweather/Crypto@^0.4.0
Below is my error:
include/crypto/authentication.hpp:4:10: fatal error: Crypto.h: No such file or directory
****************************************************************
* Looking for Crypto.h dependency? Check our library registry!
*
* CLI > platformio lib search "header:Crypto.h"
* Web > https://registry.platformio.org/search?q=header:Crypto.h
*
****************************************************************
4 | #include <Crypto.h>
I suspect either the complicated directory structure having multiple libraries in a single project, the lack of src
directory or the use of capitals in filenames might be possible causes here.
I want to emphasize that other libraries seem to work perfectly fine and include and compile without issue.
Dantali0n commented
I fixed it by not being an absolute idiot. Apologies for any inconvenience.