欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2020年05月14日 10:41:06   作者:Keine Zeit  
這篇文章主要介紹了VSCode各語言運(yùn)行環(huán)境配置方法,本文通過實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家介紹的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

系統(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)文章

  • Jebrains付費(fèi)插件Activation code[持續(xù)更新]

    Jebrains付費(fèi)插件Activation code[持續(xù)更新]

    這篇文章主要介紹了Jebrains付費(fèi)插件Activation code[持續(xù)更新],使用本Activation code需要jetbrains-agent支持!感興趣的朋友跟隨小編一起看看吧
    2020-09-09
  • Kettle下載安裝pdi-ce-7.1.0.0-12教程

    Kettle下載安裝pdi-ce-7.1.0.0-12教程

    Kettle中有兩種腳本文件,transformation和job,transformation完成針對(duì)數(shù)據(jù)的基礎(chǔ)轉(zhuǎn)換,job則完成整個(gè)工作流的控制,今天通過本文給大家分享Kettle下載安裝pdi-ce-7.1.0.0-12的過程,感興趣的朋友一起看看吧
    2022-11-11
  • 教你免費(fèi)做一個(gè)屬于自己穩(wěn)定有效的圖床-PicGo

    教你免費(fèi)做一個(gè)屬于自己穩(wěn)定有效的圖床-PicGo

    由于現(xiàn)在很多寫作平臺(tái)都支持了Markdown語法,導(dǎo)致圖床用的人越來越多。這篇文章主要介紹了如何免費(fèi)做一個(gè)屬于自己穩(wěn)定有效的圖床-PicGo,需要的朋友可以參考下
    2020-01-01
  • 將本地項(xiàng)目添加到git管理

    將本地項(xiàng)目添加到git管理

    這篇文章介紹了將本地項(xiàng)目添加到git管理的方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2022-06-06
  • SSL常用專業(yè)縮略語匯總

    SSL常用專業(yè)縮略語匯總

    這篇文章主要介紹了SSL常用專業(yè)縮略語匯總,需要的朋友可以參考下
    2017-09-09
  • ISO-8859-1 、Latin-1 西歐編碼介紹及應(yīng)用

    ISO-8859-1 、Latin-1 西歐編碼介紹及應(yīng)用

    這篇文章主要介紹了ISO-8859-1 、Latin-1 西歐編碼介紹及應(yīng)用,需要的朋友可以參考下
    2016-06-06
  • C1任務(wù)01之修改游戲存檔的方法

    C1任務(wù)01之修改游戲存檔的方法

    這篇文章主要介紹了C1任務(wù)01之修改游戲存檔的相關(guān)知識(shí),前三個(gè)任務(wù)會(huì)用到十六進(jìn)制編輯器來實(shí)現(xiàn),在修改的的過程中涉及到的知識(shí)點(diǎn)為十進(jìn)制數(shù)據(jù)與十六進(jìn)制之間數(shù)據(jù)的相互轉(zhuǎn)換,需要的朋友可以參考下
    2021-10-10
  • 全網(wǎng)最強(qiáng)下載神器IDM使用教程之利用IDM加速下載百度網(wǎng)盤大文件的方法

    全網(wǎng)最強(qiáng)下載神器IDM使用教程之利用IDM加速下載百度網(wǎng)盤大文件的方法

    自從不限速度盤下載工具Pandownload被封殺后,有些網(wǎng)友紛紛表示:幸好我們還有IDM,但是很多朋友對(duì)IDM不是多了解,下面小編給大家介紹下下載神器IDM使用教程之利用IDM加速下載百度網(wǎng)盤大文件的方法,感興趣的朋友跟隨小編一起看看吧
    2023-01-01
  • SecureCRT的使用超詳細(xì)教程

    SecureCRT的使用超詳細(xì)教程

    SecureCRT是Windows下登錄UNIX或Linux服務(wù)器主機(jī)的軟件,優(yōu)點(diǎn)是可以一次創(chuàng)建多個(gè) Tab Page,連接多臺(tái)遠(yuǎn)程主機(jī),下面給大家介紹下SecureCRT的使用超詳細(xì)教程,感興趣的朋友一起看看吧
    2021-11-11
  • Xshell?Plus?6?下載及安裝使用圖文教程(解壓即可使用)

    Xshell?Plus?6?下載及安裝使用圖文教程(解壓即可使用)

    本文分享一波?Xshell?Plus?6?破解版,親測(cè)有效,因?yàn)槭蔷G色無安裝版本的,下載下來后,解壓即可使用,就可以直接使用了,對(duì)Xshell?Plus?6?破解下載圖文教程感興趣的朋友一起看看吧
    2022-07-07

最新評(píng)論