xcmd/.vscode/settings.json

25 lines
674 B
JSON
Raw Normal View History

2021-09-12 18:01:02 +08:00
{
"C_Cpp_Runner.cCompilerPath": "/usr/bin/gcc",
"C_Cpp_Runner.cppCompilerPath": "/usr/bin/g++",
"C_Cpp_Runner.debuggerPath": "/usr/bin/gdb",
"C_Cpp_Runner.makePath": "/usr/bin/make",
"C_Cpp_Runner.warnings": [
"-Wall",
"-Wextra",
"-Wpedantic"
],
"C_Cpp_Runner.compilerArgs": [],
"C_Cpp_Runner.includePaths": [],
"C_Cpp_Runner.linkerArgs": [],
"C_Cpp_Runner.cStandard": "",
"C_Cpp_Runner.cppStandard": "",
"C_Cpp_Runner.excludeSearch": [],
"C_Cpp_Runner.enableWarnings": true,
"C_Cpp_Runner.warningsAsError": false,
"files.associations": {
2021-09-15 00:15:04 +08:00
"*.json": "c",
2021-09-12 18:01:02 +08:00
"cmath": "c",
2021-09-15 00:15:04 +08:00
"complex": "c",
"xcmd_default_keys.h": "c"
2021-09-12 18:01:02 +08:00
}
}