add some vscode settings
Stefan Schuermans

Stefan Schuermans commited on 2023-08-18 09:48:33
Showing 3 changed files, with 29 additions and 0 deletions.

... ...
@@ -0,0 +1,15 @@
1
+{
2
+    "configurations": [
3
+        {
4
+            "name": "Linux C++",
5
+            "includePath": [
6
+                "${workspace}/include"
7
+            ],
8
+            "defines": [],
9
+            "cStandard": "c11",
10
+            "cppStandard": "c++11",
11
+            "intelliSenseMode": "linux-gcc-x64"
12
+        }
13
+    ],
14
+    "version": 4
15
+}
... ...
@@ -0,0 +1,4 @@
1
+{
2
+    "files.associations": {
3
+    }
4
+}
... ...
@@ -0,0 +1,10 @@
1
+{
2
+    "version": "2.0.0",
3
+    "tasks": [
4
+        {
5
+            "label": "build",
6
+            "type": "shell",
7
+            "command": "make"
8
+        }
9
+    ]
10
+}
0 11