Files
scons-plus-plus/util/vscode_project_template/launch.json.jinja
Patrick Wuttke 3a3c79d240 Revert "Updated to include build type and variant in binary names, so they don't need to be rebuilt everytime the configuration is changed."
Modifying the suffix variables broke the library file detection, at least on Windows.

This reverts commit e6e7dbe642.
2025-03-14 09:49:21 +01:00

18 lines
531 B
Django/Jinja

{
"configurations": [
{% for executable in project.executables %}
{% set build_type_name = build_type | capitalize -%}
{
"name": "Debug {{ executable.name }}",
"type": "cppvsdbg",
"request": "launch",
"program": "{{ executable.filename | escape_path }}",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"console": "integratedTerminal"
}
{% endfor %}
]
}