VSCode各語言運(yùn)行環(huán)境配置方法示例詳解
系統(tǒng)環(huán)境變量的配置
如:將F:\mingw64\bin添加到系統(tǒng)環(huán)境變量Path中
VSCode軟件語言json配置C語言
創(chuàng)建個(gè).vscode文件夾,文件夾內(nèi)創(chuàng)建以下兩個(gè)文件
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:\\mingw64\\bin\\gdb.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:\\mingw64\\bin\\gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 4
}
C++語言
創(chuàng)建個(gè).vscode文件夾,文件夾內(nèi)創(chuàng)建以下兩個(gè)文件
tasks.json 文件配置
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "cpp.exe build active file",
"command": "F:\\mingw64\\bin\\cpp.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:\\mingw64\\bin"
},
"problemMatcher": [
"$gcc"
]
},
{
"type": "shell",
"label": "g++.exe build active file",
"command": "F:\\mingw64\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "F:\\mingw64\\bin"
}
}
]
}
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語言
創(chuàng)建個(gè).vscode文件夾,文件夾內(nèi)創(chuàng)建以下兩個(gè)文件
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:\\mingw64\\bin\\gcc.exe",
"cStandard": "c11",
"cppStandard": "c++17"
}
],
"version": 4
}
python語言
創(chuàng)建個(gè).vscode文件夾,文件夾內(nèi)創(chuàng)建文件
{
"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
}
總結(jié)
到此這篇關(guān)于VSCode各語言運(yùn)行環(huán)境配置方法示例詳解的文章就介紹到這了,更多相關(guān)VSCode各語言運(yùn)行環(huán)境配置內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
滑動(dòng)驗(yàn)證碼的設(shè)計(jì)與理解
這篇文章主要介紹了滑動(dòng)驗(yàn)證碼的設(shè)計(jì)與理解,本文通過實(shí)例代碼給大家介紹小網(wǎng)站是怎么設(shè)計(jì)的,代碼簡(jiǎn)單易懂,需要的朋友可以參考下2019-08-08
Burpsuite模塊之Burpsuite Intruder模塊詳解
Burp Intruder主要有四個(gè)模塊組成,本文針對(duì)每一模塊給大家詳細(xì)介紹,對(duì)Burpsuite Intruder模塊相關(guān)知識(shí)感興趣的朋友一起看看吧2021-09-09
詳解SHA-256算法的原理以及C#和JS的實(shí)現(xiàn)
SHA-256 是 SHA-2 下細(xì)分出的一種算法。截止目前(2023-03)未出現(xiàn)“碰撞”案例,被視為是絕對(duì)安全的加密算法之一,本文主要介紹了SHA-256算法的原理以及C#和JS的實(shí)現(xiàn),希望對(duì)大家有所幫助2023-03-03
Hadoop框架起步之圖解SSH、免密登錄原理和實(shí)現(xiàn)方法
這篇文章主要介紹了Hadoop框架起步之圖解SSH、免密登錄原理和實(shí)現(xiàn)方法,本文給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2019-07-07
SVN與Git版本控制的優(yōu)缺點(diǎn)差異全面分析
這篇文章主要為大家介紹了SVN與Git版本控制的優(yōu)缺點(diǎn)差異全面分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-04-04
支付寶 接口開發(fā)幫助(asp,php,asp.net,jsp)
支付寶的接口開發(fā)使用的技術(shù)含量并不高!因?yàn)槭褂玫氖荋TTP普通GET和Post方式傳遞數(shù)據(jù),而這些數(shù)據(jù)是傳給您的程序由您的程序任意處理和支付寶服務(wù)器處理,所以重點(diǎn)在再流程和傳參!2009-06-06

