If you’re adding a library that wants to be in the components folder, but you don’t already have one:
Create a folder called “components” in your project root folder .
Then in your projects main/CMakeLists.txt file add a path to the library include file:
INCLUDE_DIRS
"."
"${PROJECT_DIR}/components/my_library_name/src"
