HandmadeHero/.vscode/launch.json

27 lines
822 B
JSON
Raw Normal View History

2023-09-08 12:40:40 -07:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type":"cppvsdbg",
"request": "launch",
"name" : "Debug handmade win32 msvc",
2023-09-26 22:16:41 -07:00
"program": "${workspaceFolder}/data/binaries/handmade_win32.exe",
2023-09-08 12:40:40 -07:00
"args": [],
2023-09-26 22:16:41 -07:00
"cwd": "${workspaceFolder}/data/binaries/",
2023-09-08 12:40:40 -07:00
"visualizerFile": "${workspaceFolder}/scripts/handmade.natvis"
},
{
"type":"cppvsdbg",
"request": "launch",
"name" : "Debug handmade platform gen msvc",
2023-09-28 18:57:52 -07:00
"program": "${workspaceFolder}/build/engine_postbuild_gen.exe",
"args": [],
"cwd": "${workspaceFolder}/build",
"visualizerFile": "${workspaceFolder}/scripts/handmade.natvis"
2023-09-08 12:40:40 -07:00
}
]
}