HandmadeHero/.vscode/launch.json
Ed_ 2f6e60d472 symbols for engine module are now generated into a header
Started to to use gencpp to codegen.

Now instead of loading the symbol table file made by the build script I can just have it get directly compiled.
2023-09-28 20:22:15 -04:00

27 lines
823 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/handmade_platform_gen.exe",
"args": [],
"cwd": "${workspaceFolder}/build",
"visualizerFile": "${workspaceFolder}/scripts/handmade.natvis"
}
]
}