mirror of
https://github.com/winterknife/SILVERPICK
synced 2026-06-08 18:21:15 +00:00
23 lines
687 B
JSON
23 lines
687 B
JSON
{
|
|
// https://code.visualstudio.com/docs/cpp/customize-cpp-settings
|
|
// https://code.visualstudio.com/docs/cpp/configure-intellisense-crosscompilation
|
|
"configurations": [
|
|
{
|
|
"name": "Win32",
|
|
"includePath": [
|
|
"${workspaceFolder}/**"
|
|
],
|
|
"defines": [
|
|
"_DEBUG",
|
|
"UNICODE",
|
|
"_UNICODE"
|
|
],
|
|
"windowsSdkVersion": "10.0.26100.0",
|
|
"cStandard": "c17",
|
|
"cppStandard": "c++20",
|
|
"intelliSenseMode": "windows-gcc-x64",
|
|
"compilerPath": "C:/msys64/mingw64/bin/gcc.exe"
|
|
}
|
|
],
|
|
"version": 4
|
|
} |