example,i want to add new folder beside SRC
|--src
|--mynewfolder
| |--gui
| | |--custom
| | | |- Bar.c
| | | |- Bar.h
| | |--generated
| | | |- Bar2.c
| | | |- Bar2.h
and
i write in src/main.cpp
#include "Bar.h"
#include "Bar2.h"
build it error
src\main.cpp:11:24: fatal error: Bar.h: No such file or directory
my platformio.ini add
include_dir=
./include
./mynewfolder/gui/custom
./mynewfolder/gui/generated
src_dir =
./src
./mynewfolder/gui/custom
./mynewfolder/gui/generated
I need your help,thanks!