mirror of
https://gitee.com/Lamdonn/varch.git
synced 2025-12-06 16:56:42 +08:00
23 lines
758 B
JSON
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
|
|
} |