VSCode配置之C++ & SQLite3极简配置方案
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"/usr/local/include/**",
"/usr/include/sqlite3"
],
"defines": [],
"compilerPath": "/usr/bin/g++",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}
这个配置适用于Linux系统,设置了includePath,包括了工作目录下的任何子目录,以及SQLite3的标准库目录。同时,设置了compilerPath
为Linux系统下G++编译器的路径。这样配置后,VSCode的C++插件就可以提供智能感知和代码高亮等功能,同时也可以编译和运行C++代码,前提是你的系统已经安装了G++编译器和SQLite3库。
评论已关闭