Files
esqueleto/.vscode/c_cpp_properties.json
2026-03-24 21:59:22 +01:00

50 lines
1.3 KiB
JSON

{
"configurations": [
{
"name": "Mac",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"MACOS_BUILD"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "macos-clang-arm64"
},
{
"name": "Linux",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"LINUX_BUILD"
],
"compilerPath": "/usr/bin/g++",
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Win32",
"includePath": [
"${default}",
"${workspaceFolder}/source/**"
],
"defines": [
"_DEBUG",
"WINDOWS_BUILD"
],
"cStandard": "c17",
"cppStandard": "c++20",
"intelliSenseMode": "windows-msvc-x64"
}
],
"version": 4
}