Files
Stu_scores_system/.vscode/c_cpp_properties.json
T
2025-07-17 21:05:56 +08:00

27 lines
533 B
JSON

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