HandmadeHero/.vscode/c_cpp_properties.json
2023-09-08 21:08:57 -04:00

37 lines
941 B
JSON

{
"configurations": [
{
"name": "Win32 msvc",
"includePath": [
"${workspaceFolder}/project/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GEN_TIME",
"Build_Debug",
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "cl.exe",
"intelliSenseMode": "msvc-x64",
},
{
"name": "Win32 clang",
"includePath": [
"${workspaceFolder}/project/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GEN_TIME",
],
"windowsSdkVersion": "10.0.22621.0",
"compilerPath": "clang.exe",
"intelliSenseMode": "clang-x64",
}
],
"version": 4
}