如何在不使用快速修复的情况下更新 includePath?

问题描述 投票:0回答:1

我正在使用 VS Code 的 C 扩展并出现此错误。所有在线教程都导致单击“快速修复”,然后单击“编辑 includePath 设置”,但我的快速修复中没有这样的选项。还有其他方法可以更新吗?

c visual-studio-code include-path
1个回答
0
投票

Ctrl+shift+p键,输入

>c++edit configurations JSON
,回车,在
includePath

中写入你的头文件路径

例如:

{
    "configurations": [
        {
            "name": "Win32",
            "includePath": [
                "${workspaceFolder}/**",
                "/usr/include" // Your header directory
            ],
            "defines": [
                "_DEBUG",
                "UNICODE",
                "_UNICODE"
            ],
            "compilerPath": "D:\\ProgramFiles\\mingw64\\bin\\gcc.exe",
            "cStandard": "c17",
            "cppStandard": "gnu++17",
            "intelliSenseMode": "windows-gcc-x64"
        }
    ],
    "version": 4
}
© www.soinside.com 2019 - 2024. All rights reserved.