HandmadeHero/.vscode/launch.json
2023-10-01 20:17:14 -04:00

36 lines
1.1 KiB
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 engine (post_build) gen msvc",
"program": "${workspaceFolder}/build/engine_postbuild_gen.exe",
"args": [],
"cwd": "${workspaceFolder}/build",
"visualizerFile": "${workspaceFolder}/scripts/gencpp.natvis"
},
{
"type":"cppvsdbg",
"request": "launch",
"name" : "Debug handmade platform gen msvc",
"program": "${workspaceFolder}/build/platform_gen.exe",
"args": [],
"cwd": "${workspaceFolder}/project/platform",
"visualizerFile": "${workspaceFolder}/scripts/gencpp.natvis"
}
]
}