Robotips / uConfig

Datasheet pinout extractor from PDF and library Stylizer for Kicad.
GNU General Public License v3.0
513 stars 55 forks source link

Fix include statements #55

Closed GravisZro closed 1 year ago

GravisZro commented 1 year ago

Included files that are relative to the current directory should be included as such: #include "relative_path/file.h"

Included files that are relative to an included path should be included as such: #include <some_path/file.h>

The fact that they worked is somewhat of a bug but it's bad form for humans in all cases.