In this video I am going to show, How to Set Up C++ Development With Visual Studio Code on Windows 10. We volition purpose MinGW alongside VS code every bit our compiler as well as debugging tool. So First I volition demo How to install mingw. The nosotros volition meet how to create, construct as well as compile our starting fourth dimension C++ Program on VScode.
With an updated VS Code you lot tin practise it inward the next manner:
Hit (Ctrl+P) as well as type:
ext install cpptools
Open a folder (Ctrl+K & Ctrl+O) as well as practise a novel file within the folder alongside the extension .cpp (ex: main.cpp):
Type inward your code as well as striking save.
Press (Ctrl+Shift+P as well as type, Configure chore runner as well as hence pick out other at the bottom of the list.
{
"version": "2.0.0",
"tasks": [
{
"label": "build hullo world",
"type": "shell",
"command": "g++",
"args": [
"-g", "helloworld.cpp"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Hit (Ctrl+Shift+B to run Build task. This volition practise the .obj as well as .exe files for the project.
For debugging the project, Hit F5 as well as pick out C++(Windows).
In launch.json file, edit the next business as well as salve the file:
Below is an event using the MinGW GDB debugger:
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\mingw\\bin\\gdb.exe",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "build hullo world"
}
]
}
Hit F5.
-------------------------Follow-------------------
My Website - http://www.codebind.com
My Blog - https://goo.gl/Nd2pFn
My Facebook Page - https://goo.gl/eLp2cQ
Google+ - https://goo.gl/lvC5FX
Twitter - https://twitter.com/ProgrammingKnow
Pinterest - https://goo.gl/kCInUp
Text Case Converter - https://goo.gl/pVpcwL
Epoch Timestamp Converter - https://goo.gl/Zedjo5
Decimal - Binary - Hexadecimal Converter - https://goo.gl/rkX3JE
8-bit Checksum Calculator - https://goo.gl/inxvIT
-------------------------Stuff I purpose to brand videos -------------------
Stuff I purpose to brand videos
Windows notebook – http://amzn.to/2zcXPyF
Apple MacBook Pro – http://amzn.to/2BTJBZ7
Desktop - http://amzn.to/2zct252
Microphone – http://amzn.to/2zcYbW1
notebook mouse – http://amzn.to/2BVs4Q3
0 comments:
Post a Comment