WL WorkSpace(VS Code C++配置工具)是一款能夠讓用戶支持一鍵配置VS Code C++環境的工具,使用起來也非常簡單,直接將該軟件配置到用戶的visual studio code中,直接就能使用。
【基本簡介】
你還在為Windows環境下的VS Code C++環境配置所煩惱嗎???
一鍵配置C++環境,不是問題 !
【主要流程】
1. 下載VScode
2. 安裝cpptools工具
3. 下載MinGW
4. 配置環境變量
5. 使用簡單的.cpp文件配置C++環境
6. 運行
➺➻➸ 詳細解讀:
1. 下載VScode
下載鏈接:https://code.visualstudio.com/Download
安裝過程:一路下一步,安裝很簡單,安裝路徑看個人
2. 安裝cpptools工具
打開vscode,按照以下步驟安裝
3. 下載MinGW
下載地址:https://sourceforge.net/projects/mingw-w64/files/
下載的文件:進入網站後不要點擊 "Download Lasted Version",往下滑,找到最新版的 "x86_64-posix-seh"。
安裝MinGW:下載後是一個7z的壓縮包,解壓後移動到你想安裝的位置即可。我的安裝位置是:D:\2Software\mingw64
4. 配置環境變量
配置對象:WinGW,所以把你剛剛安裝WinGW的路徑拷貝一下
配置環境變量:在此以win10為例,到達第6步之後,前麵打開的窗口都要按下確定,否則會失敗。
【注】:win7需要添加路徑,不要覆蓋了。萬一真的覆蓋了,點擊取消重來一遍,隻要不點確定,啥都好說 ^o^
配置好環境變量後最好重啟一下 VScode ^V^
❁❁❁ 驗證一下環境變量是否配置成功
按下 win + R,輸入cmd,回車鍵之後輸入g++,再回車,如果提示以下信息[1],則環境變量配置成功。如果提示以下信息[2],則環境變量配置失敗。
[1]:g++: fatal error: no input files
[2]:'g++' 不是內部或外部命令,也不是可運行的程序或批處理文件。
5. 使用簡單的.cpp文件配置C++環境
新建空文件夾Code打開VScode --> 打開文件夾 --> 選擇剛剛創建的文件夾Code
新建test.cpp文件(以最簡單的 HelloWorld.cpp 為例)
?12345678#include
#includeint main(){ printf("Hello World\n"); system("pause"); return 0;}#include#includeint main() { printf("Hello World\n"); system("pause"); return 0; }進入調試界麵添加配置環境,選擇 C++(GDB/LLDB),再選擇 g++.exe,之後會自動生成 launch.json 配置文件
編輯 launch.json 配置文件
?1234567891011121314151617181920212223242526{ "version": "0.2.0", "configurations": [ { "name": "g++.exe build and debug active file", "type": "cppdbg", "request": "launch", "program": "${fileDirname}\\${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, //修改此項,讓其彈出終端 "MIMode": "gdb", "miDebuggerPath": "D:\\2Software\\mingw64\\bin\\gdb.exe", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "task g++" //修改此項 } ]}{ "version": "0.2.0", "configurations": [ { "name": "g++.exe build and debug active file", "type": "cppdbg", "request": "launch", "program": "${fileDirname}\\${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, //修改此項,讓其彈出終端 "MIMode": "gdb", "miDebuggerPath": "D:\\2Software\\mingw64\\bin\\gdb.exe", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "preLaunchTask": "task g++" //修改此項 } ] }返回.cpp文件,按F5進行調試,會彈出找不到任務"task g++",選擇 "配置任務",會自動生成 tasks.json 文件編輯 tasks.json 文件
?1234567891011121314151617181920212223{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "task g++", //修改此項 "command": "D:\\2Software\\mingw64\\bin\\g++.exe", "args": [ "-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe" ], "options": { "cwd": "D:\\2Software\\mingw64\\bin" }, "problemMatcher": [ "$gcc" ], "group": "build" } ]}{ "version": "2.0.0", "tasks": [ { "type": "shell", "label": "task g++", //修改此項 "command": "D:\\2Software\\mingw64\\bin\\g++.exe", "args": [ "-g", "${file}", "-o", "${fileDirname}\\${fileBasenameNoExtension}.exe" ], "options": { "cwd": "D:\\2Software\\mingw64\\bin" }, "problemMatcher": [ "$gcc" ], "group": "build" } ] }【注】: launch.json 文件中 "preLaunchTask" 的值 必須與 tasks.json 文件中 "label"的值一致。值的設置看個人喜好,保持默認也是OK的。
6. 運行
返回 HelloWorld.cpp 文件,按F5調試,發現完全OK了!
【使用方法】
前排提示,如果嫌麻煩,可以使用一步到位的Green Studio
把這個壓縮包下載並解壓到任意path。
打開你的Visual Studio Code
點擊 文件?打開文件夾,選擇你解壓到的路徑(內含.vscode文件夾)
然後就可以愉快地寫您的C++代碼了
編譯方法(點擊以查看詳情)
按下鍵盤 Ctrl+Shift+B
點擊build
點擊gcc
文件編譯到同目錄下
調試方法
按下 F5,簡單粗暴