HandmadeHero/.vscode/c_cpp_properties.json

37 lines
941 B
JSON
Raw Normal View History

2023-09-08 12:40:40 -07:00
{
"configurations": [
{
"name": "Win32 msvc",
"includePath": [
"${workspaceFolder}/project/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"GEN_TIME",
2023-09-08 18:08:57 -07:00
"Build_Debug",
2023-09-08 12:40:40 -07:00
],
"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
}