Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
该项目基于 ESP-IDF v4。它可以为多个平台构建。
目前我正在尝试启用完整的源代码外构建方法,并且sdkconfig是唯一保留在源代码树中的自动生成文件。默认情况下,它保存在 cmake 项目的根目录中。
sdkconfig
有没有办法改变sdkconfig文件的默认位置?
您可以使用该SDKCONFIG变量来设置您需要的路径。
SDKCONFIG
CMakeLists.txt像这样在你的文件中设置它:
CMakeLists.txt
set(SDKCONFIG "C:/path/to/your/folder/sdkconfig")