濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > VSCode各語(yǔ)言運(yùn)行環(huán)境配置方法示例詳解

VSCode各語(yǔ)言運(yùn)行環(huán)境配置方法示例詳解

熱門標(biāo)簽:北京外呼系統(tǒng)咨詢電話 慶陽(yáng)外呼系統(tǒng)定制開發(fā) 海南人工外呼系統(tǒng)哪家好 廊坊地圖標(biāo)注申請(qǐng)入口 高德地圖標(biāo)注公司位置需要錢嗎 合肥阿里辦理400電話號(hào) 怎么去掉地圖標(biāo)注文字 地圖標(biāo)注資源分享注冊(cè) 襄陽(yáng)外呼增值業(yè)務(wù)線路解決方案

系統(tǒng)環(huán)境變量的配置

如:將F:\mingw64\bin添加到系統(tǒng)環(huán)境變量Path中

VSCode軟件語(yǔ)言json配置C語(yǔ)言

創(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++語(yǔ)言

創(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語(yǔ)言

創(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語(yǔ)言

創(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ǔ)言運(yùn)行環(huán)境配置方法示例詳解的文章就介紹到這了,更多相關(guān)VSCode各語(yǔ)言運(yùn)行環(huán)境配置內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • vscode配置遠(yuǎn)程開發(fā)環(huán)境并遠(yuǎn)程調(diào)試運(yùn)行C++代碼的教程
  • Visual Studio Code (vscode) 配置C、C++環(huán)境/編寫運(yùn)行C、C++的教程詳解(Windows)【真正的小白版】
  • Visual Studio Code (vscode) 配置C、C++環(huán)境/編寫運(yùn)行C、C++的教程詳解(主要Windows、簡(jiǎn)要Linux)
  • VSCode下配置python調(diào)試運(yùn)行環(huán)境的方法

標(biāo)簽:鎮(zhèn)江 臺(tái)州 平頂山 商丘 株洲 哈密 鶴崗 綿陽(yáng)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《VSCode各語(yǔ)言運(yùn)行環(huán)境配置方法示例詳解》,本文關(guān)鍵詞  VSCode,各,語(yǔ)言,運(yùn)行,環(huán)境,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《VSCode各語(yǔ)言運(yùn)行環(huán)境配置方法示例詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于VSCode各語(yǔ)言運(yùn)行環(huán)境配置方法示例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    蒙城县| 冀州市| 大庆市| 宜黄县| 宁明县| 永宁县| 柏乡县| 石首市| 新疆| 岑溪市| 姜堰市| 西城区| 讷河市| 宁乡县| 达日县| 湘乡市| 开阳县| 威远县| 静海县| 白沙| 丰宁| 阿鲁科尔沁旗| 西和县| 横山县| 江津市| 泗洪县| 康保县| 永清县| 江达县| 綦江县| 中方县| 七台河市| 大宁县| 祁连县| 嘉禾县| 贺兰县| 安徽省| 贡觉县| 军事| 仪征市| 乐清市|