HandmadeHero/.vscode/launch.json
2023-09-28 21:57:52 -04:00

27 lines
822 B
JSON

{
// 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",
"program": "${workspaceFolder}/data/binaries/handmade_win32.exe",
"args": [],
"cwd": "${workspaceFolder}/data/binaries/",
"visualizerFile": "${workspaceFolder}/scripts/handmade.natvis"
},
{
"type":"cppvsdbg",
"request": "launch",
"name" : "Debug handmade platform gen msvc",
"program": "${workspaceFolder}/build/engine_postbuild_gen.exe",
"args": [],
"cwd": "${workspaceFolder}/build",
"visualizerFile": "${workspaceFolder}/scripts/handmade.natvis"
}
]
}