首页 > 其他分享 >转载-“检测到#include错误。请更新includePath

转载-“检测到#include错误。请更新includePath

时间:2023-02-16 23:34:16浏览次数:54  
标签:include settings launch Cpp json workspaceFolder includePath 转载

1、按下Ctrl+Shift+P,会在VSCode上方出现一个弹窗。
2、在弹窗中输入"open settings",在下拉列表中选中"Preferences: Open Settings (UI)":

3、在搜索框内输入 launch

4、编译器会搜索到该功能,然后点击【在settings.json中编辑】

5、此时会跳转到settings.json,并且里面有“launch”:{}

6、在文件的“launch”:{}中加入以下内容,注意要有逗号和已有的内容隔开:

"C_Cpp.default.browse.path": ["${workspaceFolder}/**"], "C_Cpp.default.includePath": ["${workspaceFolder}/**"]

版权声明:本文为CSDN博主「giraffe1997」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/giraffe1997/article/details/125379748

标签:include,settings,launch,Cpp,json,workspaceFolder,includePath,转载
From: https://www.cnblogs.com/gzcheng15/p/17035645.html

相关文章