varch/.vscode/c_cpp_properties.json
2024-08-11 02:56:16 +08:00

23 lines
758 B
JSON

{
"configurations": [
{
"name": "Win32",
"includePath": [
"D:\\MinGW\\include", // Include system path, stdio.h ...
"D:\\MinGW\\lib\\gcc\\mingw32\\6.3.0\\include", // Include system path, stddef.h ...
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "8.1",
"compilerPath": "D:\\MinGW\\bin\\gdb.exe", // MinGW gdb path
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64" // gcc-x64, gcc-arm64, msvc-x64, clang-x64, clang-arm64
}
],
"version": 4
}