cpp-demo-project/dot vscode/c_cpp_properties.json

15 lines
398 B
JSON
Raw Normal View History

2024-01-19 11:36:20 +01:00
{
"configurations": [
{
"name": "Win32",
2024-01-22 12:05:59 +01:00
"includePath": ["${workspaceFolder}/**"],
"defines": ["_DEBUG", "UNICODE", "_UNICODE"],
2024-01-19 11:36:20 +01:00
"compilerPath": "C:\\msys64\\mingw64\\bin\\gcc.exe",
"cStandard": "c17",
"cppStandard": "gnu++20",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
2024-01-22 12:05:59 +01:00
}