Fixed generation of VSCode launch.json.
This commit is contained in:
parent
1401fdea90
commit
5f11d64744
@ -1,9 +1,10 @@
|
||||
{
|
||||
"configurations": [
|
||||
{% for executable in project.executables %}
|
||||
{% for build_type in project.build_types %}
|
||||
{% set build_type_name = build_type | capitalize -%}
|
||||
{
|
||||
"name": "Debug {{ executable.name }}",
|
||||
"name": "{{ executable.name }} ({{ build_type | capitalize }})",
|
||||
"type": "cppvsdbg",
|
||||
"request": "launch",
|
||||
"program": "{{ executable.filename(build_type) | escape_path }}",
|
||||
@ -14,5 +15,6 @@
|
||||
"console": "integratedTerminal"
|
||||
}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
]
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user