REQUIRES list

If you don’t have a REQUIRES list in CMakeLists.txt that is declaring dependencies on certain special components, you typically don’t have to add basic components as REQUIRES also, due to the implicit dependency behaviour of main component (for an Espressif ESP-IDF explanation see here). If you do have a REQUIRES section, you will need to add […]

Read More

Moving or renaming a project

Typically you can just delete your projects “\build” folder. Other methods CMake has a cache which will have wrong paths after you move or rename a project. To clear it in Visual Studio Code: Settings icon > Command Pallet > Enter “CMake:Delete Cache”

Read More