Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
Vscode Cxx Dev Files
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
iRMB
Vscode Cxx Dev Files
Merge requests
!2
Add config to launch apps by choosing their name
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add config to launch apps by choosing their name
launchConfigs
into
main
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Anna Wellmann
requested to merge
launchConfigs
into
main
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
e8e56b07
1 commit,
2 years ago
1 file
+
31
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.vscode/launch.json
+
31
−
1
Options
@@ -26,6 +26,36 @@
"ignoreFailures"
:
true
}
]
},
//
"program"
accepts
an
input
variable
$
{
input:appName
},
which
is
specified
in
the
"inputs"
sections
{
"name"
:
"(gdb) Launch by App Name"
,
"type"
:
"cppdbg"
,
"request"
:
"launch"
,
"program"
:
"${workspaceFolder}/build/bin/${input:appName}"
,
"cwd"
:
"${workspaceFolder}/build"
,
"MIMode"
:
"gdb"
,
"setupCommands"
:
[
{
"description"
:
"Enable pretty-printing for gdb"
,
"text"
:
"-enable-pretty-printing"
,
"ignoreFailures"
:
true
}
]
}
],
//
specify
input
variables
//
"type"
:
"pickString"
-
show
a
dropdown
to
let
the
user
select
from
several
options
//
"default"
:
specify
the
default
option
//
"options"
:
[
"App1"
,
"GridGeneratorTests"
]
-
add
options
to
the
dropdown
menu
"inputs"
:
[
{
"id"
:
"appName"
,
"type"
:
"pickString"
,
"default"
:
"VirtualFluids_GPUTests"
,
"description"
:
"The app name"
,
"options"
:
[
"App1"
,
"GridGeneratorTests"
,
"VirtualFluids_GPUTests"
]
}
]
}
\ No newline at end of file
}
Loading