歡迎您光臨本站 註冊首頁

VSCode各語言運行環境配置方法示例詳解

←手機掃碼閱讀     月球人 @ 2020-06-03 , reply:0

系統環境變量的配置

如:將F:mingw64in添加到系統環境變量Path中

VSCode軟件語言json配置C語言

創建個.vscode文件夾,文件夾內創建以下兩個文件

 launch.json 文件配置 { "version": "0.2.0", "configurations": [ { "name": "(gdb) Launch", "type": "cppdbg", "request": "launch", //"program": "enter program name, for example ${workspaceFolder}/a.exe", "program": "${file}.o", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "miDebuggerPath": "F:mingw64ingdb.exe", "preLaunchTask": "g++", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ] } ] }


 c_cpp_properties.json 文件配置 { "configurations": [ { "name": "Win32", "includePath": [ "E:/Opencv_4.1/opencv/build/include", "${workspaceRoot}", "E:/Opencv_4.1/opencv/build/include/opencv2", "F:/mingw64/include" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "intelliSenseMode": "msvc-x64", "browse": { "path": [ "E:/Opencv_4.1/opencv/build/include", "${workspaceRoot}", "E:/Opencv_4.1/opencv/build/include/opencv2", "F:/mingw64/include" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" }, "compilerPath": "F:mingw64ingcc.exe", "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 }


C++語言

創建個.vscode文件夾,文件夾內創建以下兩個文件

 tasks.json 文件配置 { "version": "2.0.0", "tasks": [ { "type": "shell", "label": "cpp.exe build active file", "command": "F:mingw64incpp.exe", "args": [ "-I", "E:/Opencv_4.1/opencv/build/include", "-I", "E:/Opencv_4.1/opencv/build/include/opencv2", "-L", "E:/Opencv_4.1/opencv/build/x64/vc14/lib", "-g", "${file}", "-o", "${fileDirname}${fileBasenameNoExtension}.exe", "-l", "opencv_core", "-l", "libopencv_imgproc", "-l", "libopencv_video", "-l", "libopencv_ml", "-l", "libopencv_highgui", "-l", "libopencv_objdetect", "-l", "libopencv_flann", "-l", "libopencv_imgcodecs", "-l", "libopencv_photo", "-l", "libopencv_videoio" ], "options": { "cwd": "F:mingw64in" }, "problemMatcher": [ "$gcc" ] }, { "type": "shell", "label": "g++.exe build active file", "command": "F:mingw64ing++.exe", "args": [ "-g", "${file}", "-o", "${fileDirname}${fileBasenameNoExtension}.exe" ], "options": { "cwd": "F:mingw64in" } } ] }


 c_cpp_properties.json 文件配置 { "configurations": [ { "name": "Win32", "includePath": [ "${workspaceRoot}", "E:/Opencv_4.1/opencv/build/include", "E:/Opencv_4.1/opencv/build/include/opencv2", "F:/mingw64/include/c++" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "intelliSenseMode": "msvc-x64", "browse": { "path": [ "${workspaceRoot}", "E:/Opencv_4.1/opencv/build/include", "E:/Opencv_4.1/opencv/build/include/opencv2", "F:/mingw64/include/c++" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" }, "compilerPath": "F:/mingw64/bin/gcc.exe", "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 }


java語言

創建個.vscode文件夾,文件夾內創建以下兩個文件

 c_cpp_properties.json 文件配置 { "configurations": [ { "name": "Win32", "includePath": [ "${workspaceRoot}", "F:/mingw64/include/java" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "intelliSenseMode": "msvc-x64", "browse": { "path": [ "${workspaceRoot}", "F:/mingw64/include/java" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" }, "compilerPath": "F:mingw64ingcc.exe", "cStandard": "c11", "cppStandard": "c++17" } ], "version": 4 }


python語言

創建個.vscode文件夾,文件夾內創建文件

 { "configurations": [{ "name": "Win32", "includePath": [ "${workspaceRoot}", "F:/mingw64/include/python" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "intelliSenseMode": "msvc-x64", "browse": { "path": [ "${workspaceRoot}", "F:/mingw64/include/python" ], "limitSymbolsToIncludedHeaders": true, "databaseFilename": "" } }], "version": 3 }



[月球人 ] VSCode各語言運行環境配置方法示例詳解已經有362次圍觀

http://coctec.com/docs/vscode/show-post-236739.html