The File Structure
project_name/
├── CMakeLists.txt
├── include/
│ ├── project_name/
│ │ ├── header1.h
│ │ └── header2.h
│ └── other_headers/
│ ├── header3.h
│ └── header4.h
├── src/
│ ├── main.cpp
│ └── other_source_files.cpp
├── test/
│ ├── test1.cpp
│ └── test2.cpp
└── README.mdproject_name/
├── .d/
├── .vscode/
├── bin/
├── firmware/
├── include/
│ ├── libvgl/
│ ├── okapi/
│ ├── pros/
│ ├── api.h
│ └── main.h
├── src/
│ └── main.cpp
├── .gitignore
├── common.mk
├── compille_commands.json
├── Makefile
└── project.prosLast updated