Replies: 1 comment 4 replies
-
@Nerixyz The best suggestion that I can give is to create a launch.json so that you don't have to utilize the quick debug configuration that our extension uses, but you can have full customization over any launch.json configuration. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When debugging tests, having the quick picker open up repeatedly is annoying. I'd like to specify a default target that gets used when debugging tests.
I've implemented an MVP in Nerixyz@21392c9. You set
cmake.ctest.testSuiteDelimiter.debugLaunchTarget
to the target name (seems like that's the only decent identifier) and if the target exists, it will be used - otherwise the picker is shown. I noticedvscode-cmake-tools/src/ctest.ts
Line 933 in ed6d9ad
... but I don't know about the status of that, and this would require choosing the target once for every session. Does my MVP go in the right direction to open a PR? (the wording might be a bit confusing as CMake also has "targets", but that doesn't impact the functionality)
Beta Was this translation helpful? Give feedback.
All reactions