C/C++教程

xmake: vscode intellisense include错误的问题

本文主要是介绍xmake: vscode intellisense include错误的问题,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

解决方案:
手动生成compile_commands.json:

xmake project -k compile_commands

然后把它拷贝到.vscode中即可。
c_cpp_properties.json(参考)

{
    "configurations": [
        {
            "compileCommands": ".vscode/compile_commands.json",
            "intelliSenseMode": "windows-msvc-x64",
            "cStandard": "c17",
            "cppStandard": "c++17"
        }
    ],
    "version": 4
}
这篇关于xmake: vscode intellisense include错误的问题的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!