engineer-thesis-WUT/.vscode/settings.json

112 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2022-08-25 17:17:53 +02:00
{
2022-08-27 21:43:58 +02:00
"C_Cpp_Runner.cCompilerPath": "/usr/bin/gcc",
"C_Cpp_Runner.cppCompilerPath": "/usr/bin/g++",
2022-08-25 17:17:53 +02:00
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.msvcBatchPath": "",
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic"
],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.includeSearch": [
"*",
"**/*"
],
"C_Cpp_Runner.excludeSearch": [
"**/build",
"**/build/**",
"**/.*",
"**/.*/**",
"**/.vscode",
"**/.vscode/**"
2022-08-28 19:20:00 +02:00
],
"files.associations": {
2022-11-20 23:14:59 +01:00
"*.ejs": "html",
2022-08-28 19:20:00 +02:00
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"cctype": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "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": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"new": "cpp",
"ostream": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"cinttypes": "cpp",
2022-09-02 19:57:09 +02:00
"typeinfo": "cpp",
"chrono": "cpp",
"ctime": "cpp",
2022-11-20 23:14:59 +01:00
"ratio": "cpp",
"compare": "cpp",
"concepts": "cpp",
2022-12-11 18:49:16 +01:00
"numbers": "cpp",
"hash_map": "cpp",
"condition_variable": "cpp",
"list": "cpp",
"map": "cpp",
"mutex": "cpp",
"semaphore": "cpp",
"stop_token": "cpp",
2023-03-05 20:02:41 +01:00
"thread": "cpp",
"codecvt": "cpp",
"set": "cpp",
"unordered_set": "cpp",
"iomanip": "cpp",
"variant": "cpp"
2022-08-29 21:01:55 +02:00
},
"C_Cpp.errorSquiggles": "Disabled",
"cSpell.words": [
"awesomeface",
2022-12-11 18:49:16 +01:00
"kuchy",
2023-03-19 16:59:13 +01:00
"MIPMAP",
"mipmaps",
"multiplatform",
2023-03-19 16:59:13 +01:00
"Parameterfv",
"Parameteri",
2023-03-12 17:32:42 +01:00
"RENDERLOOP",
2023-03-29 14:46:58 +02:00
"VERTICE",
"vshader"
2023-04-02 17:59:15 +02:00
],
"C_Cpp_Runner.debuggerPath": "gdb",
"C_Cpp_Runner.useMsvc": false
2022-08-25 17:17:53 +02:00
}