Hello, I have a project which uses ESP IDF. I am using VSCode extension. My project has multiple components. each consists inc and src directory. this project compiles successfully on windows environment's ESP-IDF but when I compile in Linux environment which is Pop os Here it fails with Include error because it cant find the file from component I have created. I want know why its happening in case of linux only? it ESP_IDF and including OS is newly installed on my PC. is there update in ESP-IDF that's causing this or the file path having issue in CMake ?
Here is CmakeLists of component :
set(COMPONENT_ADD_INCLUDEDIRS "inc")
set(COMPONENT_SRCS "src/src_file1.c"
"src/src_file2.c"
)
set(COMPONENT_REQUIRES "esp_adc_cal")
register_component()