VSCode C开发配置
1、开发mysql配置
1.1 tasks.json配置,在项目的.vscode目录中进行tasks.json 文件参数配置:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| { "tasks": [ { "type": "cppbuild", "label": "C/C++: gcc.exe build active file", "command": "C:\\mingw64\\bin\\gcc.exe", "args": [ "-fdiagnostics-color=always", "-g", "${file}", "-I", "C:\\wamp64\\bin\\mysql\\mysql5.7.36\\include\\", "-L", "C:\\wamp64\\bin\\mysql\\mysql5.7.36\\lib", "-lmysql", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe" ], "options": { "cwd": "${fileDirname}" }, "problemMatcher": [ "$gcc" ], "group": { "kind": "build", "isDefault": true }, "detail": "Task generated by Debugger." } ], "version": "2.0.0" }
|
1.2 c_cpp_properties.json 配置,在项目的 .vscode 目录下配置 c_cpp_properties.json 文件参数:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| { "configurations": [ { "name": "Win32", "includePath": [ "${workspaceFolder}/**", "${workspaceRoot}", "C:\\wamp64\\bin\\mysql\\mysql5.7.36\\include" ], "browse": { "path": [ "${workspaceRoot}", "C:\\wamp64\\bin\\mysql\\mysql5.7.36\\lib" ] }, "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "compilerPath": "C:\\mingw64\\bin\\gcc.exe", "cStandard": "c17", "cppStandard": "gnu++14", "intelliSenseMode": "windows-gcc-x64" } ], "version": 4 }
|
使用 Microsoft VS Code 配置C开发环境
1、安装MinGW64编译器
安装后,配置环境变量,将mingw文件下的bin目录添加了path中。
在cmd终端中输入 gcc -v 来检查是否成功安装。
2、安装vscode 插件
(写c的插件,《c/c++》 《c++ intellisense》《code runner》,基本安装了这几个插件你就可以开始写了(或者你可以选择C/C++ Extension Pack套餐))
3、配置编译器
按快捷键Ctrl+Shift+P调出命令面板,输入C/C++,选择“Edit Configurations(UI)”进入配置。
这里配置两个选项: