We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3abaccd commit 28219e1Copy full SHA for 28219e1
2 files changed
.vscode/tasks.json
@@ -0,0 +1,28 @@
1
+{
2
+ "tasks": [
3
+ {
4
+ "type": "cppbuild",
5
+ "label": "C/C++: g++ build active file",
6
+ "command": "/usr/bin/g++",
7
+ "args": [
8
+ "-fdiagnostics-color=always",
9
+ "-g",
10
+ "${file}",
11
+ "-o",
12
+ "${fileDirname}/${fileBasenameNoExtension}.out"
13
+ ],
14
+ "options": {
15
+ "cwd": "${fileDirname}"
16
+ },
17
+ "problemMatcher": [
18
+ "$gcc"
19
20
+ "group": {
21
+ "kind": "build",
22
+ "isDefault": true
23
24
+ "detail": "Task generated by Debugger."
25
+ }
26
27
+ "version": "2.0.0"
28
+}
source/helloWorld/helloWorld.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+
+int main() {
+ std::cout << "Hello World!" << std::endl;;
+ return 0;
0 commit comments