Po-util: The Ultimate Local Particle Experience for Linux and macOS

I’m having a problem with my #include statements still as mentioned in this other post: Local build including header files in sub-directoriess`

It would appear that it still wants me to specify full paths to my included headers.

My structure is like:

firmware

  • folder1
    • folder1.h
  • main.cpp

and in main.cpp i have

#include "folder1.h"

but it throws an error unless I use

#include "folder1/folder1.h"

any was to support flatenning the file structure?