2021年10月2日 星期六

VSCode 新增 C++ 專案

VSCode 沒有內建新增專案的功能,因此如果要在windows 環境下新增並編譯C++專案的話,操作步驟如下


1.  安裝擴充元件 "C/C++ Project Generator"

How to use

(1) Go to command pallete (usually : ctrl + shift + p)
(2) Search for "Create C project" or "Create c++ project" depending on your preference  
 
 
(3) Select the folder where the project should be created
 
 
(4) That's it, project will open
 

這邊會發現連Makefile都幫我們建好了,所以直接編譯就好了,但是我的電腦(win10) 還沒有配置make命令,所以要先配置make命令


2. 在Win10 安裝 mingw32-make (如果已經安裝可以跳過此步驟)

(1) 安裝最新的mingw: https://sourceforge.net/projects/mingw/files/latest/download?source=files

(2) 加入環境變量: C:\MINGW\bin


(3) 在cmd中輸入指令:mingw-get install gcc g++ mingw32-make 

執行成功後 就可以重啟vscode


3. 編譯並執行專案

(1) 編譯專案: mingw32-make


(2) 執行專案:  執行output資料夾中剛剛編譯出來的 main.exe 



恩~原本是打算練習JSON 解析的,所以專案建好之後,就可以引用 nlohmann/json 的libraries 了

從github下載並引入 json/single_include/nlohmann/json.hpp 這個header file就可以使用JSON lib了



沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。