- updated vscode stuff

This commit is contained in:
2022-07-09 12:04:58 +02:00
parent 9641608efc
commit cffa30cced
2 changed files with 41 additions and 1 deletions
+13 -1
View File
@@ -1,5 +1,17 @@
{
"files.associations": {
"complex": "cpp"
"complex": "cpp",
"*.mm": "cpp",
"*.tcc": "cpp",
"unordered_map": "cpp",
"fstream": "cpp",
"istream": "cpp",
"numeric": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"bitset": "cpp",
"memory": "cpp",
"random": "cpp",
"optional": "cpp"
}
}
+28
View File
@@ -0,0 +1,28 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++ Aktive Datei kompilieren",
"command": "/usr/bin/g++",
"args": [
"-fdiagnostics-color=always",
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "${fileDirname}"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Vom Debugger generierte Aufgabe."
}
],
"version": "2.0.0"
}