Using PlatformIO, version 3.0.0a5
I can’t get a local build to find any project dependencies when unit-testing
For example,
[env:nodemcu]
platform = espressif
framework = arduino
board = nodemcu
lib_extra_dirs = \path\to\lib
gives a nice dependency map, but
[env:local]
platform = native
lib_extra_dirs = \path\to\lib
says “Project does not have any dependencies”
and then
“Fatal error: No such file or directory”
for the first library in src/main.cpp
which is located in the project lib
folder, not the external libraries.
Any thoughts on why it might not work?
Could it be a problem with MinGW?
Thanks