Files
Cpp_Code/.vscode/c_cpp_properties.json
2026-05-06 11:44:00 +08:00

27 lines
691 B
JSON

{
"configurations": [
{
"name": "windows-gcc-x64",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "D:/settings/Language/C/mingw64/bin/g++.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "windows-gcc-x64",
"compilerArgs": [
"-Wall",
"-Wextra",
"-Wshadow",
"-fsanitize=address",
"-g3"
]
}
],
"version": 4
}