Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robertohuertasm/cpp-for-vscode
https://github.com/robertohuertasm/cpp-for-vscode
configuration vscode
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/robertohuertasm/cpp-for-vscode
- Owner: robertohuertasm
- License: gpl-3.0
- Created: 2017-06-06T22:32:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-03T00:08:55.000Z (about 7 years ago)
- Last Synced: 2024-10-30T17:51:42.338Z (3 months ago)
- Topics: configuration, vscode
- Language: C++
- Size: 31.3 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cpp
This configuration works both in Linux and Windows.
Just press **F5** and it will work out of the box. It will compile the `test.cpp` using `g++` and will debug your program with `gdb`.
Remember that the output of your program will be shown in the `Debug Console` tab of your integrated terminal.
In Windows, use `MinGw` to get `g++` working.
## Windows
Just download `MinGw` from [here](http://www.mingw.org/). Install it and once you get to the installation screen select `g++` packages.
Remember to set the path into your environment variables:
`C:\MinGW\bin`
## Tasks
You have a build task (ctrol + shift + b) which will generate `test.exe` and also a run task, which is mapped to (ctrol + shift + alt + B).