{ "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 }