aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
diff options
context:
space:
mode:
authorMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 12:33:11 +0200
committerMax-001 <80035972+Max-001@users.noreply.github.com>2024-10-02 12:33:11 +0200
commit24d284a4ebf7928310e42aaff2d4a1a08c7a7dd5 (patch)
treec3579136c510bfca6b99d94e1127d8ce7608c30c /.vscode/settings.json
parent5458abaca5f01a4d34bb55b1b44dc4fb4e9890be (diff)
Added tasks to quickly build POC, added launch to quickly debug POC
Diffstat (limited to '.vscode/settings.json')
-rw-r--r--.vscode/settings.json58
1 files changed, 57 insertions, 1 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json
index d265510..52c6107 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,59 @@
{
- "cmake.sourceDirectory": "${workspaceFolder}/src"
+ "cmake.sourceDirectory": "${workspaceFolder}/src",
+ "files.associations": {
+ "any": "cpp",
+ "array": "cpp",
+ "atomic": "cpp",
+ "bit": "cpp",
+ "*.tcc": "cpp",
+ "cctype": "cpp",
+ "charconv": "cpp",
+ "clocale": "cpp",
+ "cmath": "cpp",
+ "compare": "cpp",
+ "concepts": "cpp",
+ "cstdarg": "cpp",
+ "cstddef": "cpp",
+ "cstdint": "cpp",
+ "cstdio": "cpp",
+ "cstdlib": "cpp",
+ "ctime": "cpp",
+ "cwchar": "cpp",
+ "cwctype": "cpp",
+ "deque": "cpp",
+ "string": "cpp",
+ "unordered_map": "cpp",
+ "vector": "cpp",
+ "exception": "cpp",
+ "algorithm": "cpp",
+ "functional": "cpp",
+ "iterator": "cpp",
+ "memory": "cpp",
+ "memory_resource": "cpp",
+ "numeric": "cpp",
+ "optional": "cpp",
+ "random": "cpp",
+ "string_view": "cpp",
+ "system_error": "cpp",
+ "tuple": "cpp",
+ "type_traits": "cpp",
+ "utility": "cpp",
+ "format": "cpp",
+ "initializer_list": "cpp",
+ "iosfwd": "cpp",
+ "iostream": "cpp",
+ "istream": "cpp",
+ "limits": "cpp",
+ "new": "cpp",
+ "numbers": "cpp",
+ "ostream": "cpp",
+ "span": "cpp",
+ "stdexcept": "cpp",
+ "streambuf": "cpp",
+ "text_encoding": "cpp",
+ "cinttypes": "cpp",
+ "typeindex": "cpp",
+ "typeinfo": "cpp",
+ "variant": "cpp"
+ }
}