small-projects/cpp-voxel-engine/.vscode/c_cpp_properties.json

23 lines
612 B
JSON
Raw Normal View History

2025-04-06 02:03:23 +00:00
{
"configurations": [
{
"name": "Win32",
"includePath": [
2025-04-06 02:09:28 +00:00
"${default}",
"${workspaceFolder}/**",
"C:\\msys64\\mingw64\\include\\**"
2025-04-06 02:03:23 +00:00
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"windowsSdkVersion": "10.0.22621.0",
2025-04-06 02:09:28 +00:00
"compilerPath": "C:/msys64/mingw64/bin/g++.exe",
2025-04-06 02:03:23 +00:00
"cStandard": "c17",
2025-04-06 02:09:28 +00:00
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
2025-04-06 02:03:23 +00:00
}
],
"version": 4
}