Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-24 17:07:26 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-24 17:07:49 +0300
commitb59739fac2c398f5034e0c2bfd1f3663b4fbdc79 (patch)
treee011bcbbaa4718f501876aadf6bdfcf7b7b5ef59 /.vscode
parent3b33a49bd8ce7d763009cd7ca5560ac95a76d295 (diff)
Update launch configurations.
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json33
1 files changed, 30 insertions, 3 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index afc47873..0da9a71f 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
- "name": "Launch",
+ "name": "Launch Profiler GUI",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/profiler/build/unix/Tracy-debug",
@@ -13,7 +13,34 @@
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
- "externalConsole": false
- }
+ "externalConsole": false,
+ "preLaunchTask": "Build Profiler GUI",
+ "console": "internalConsole",
+ "internalConsoleOptions": "neverOpen"
+ },
+ {
+ "name": "Launch capture tool",
+ "type": "lldb",
+ "request": "launch",
+ "program": "${workspaceFolder}/capture/build/unix/capture-debug",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "preLaunchTask": "Build capture tool"
+ },
+ {
+ "name": "Launch update tool",
+ "type": "lldb",
+ "request": "launch",
+ "program": "${workspaceFolder}/update/build/unix/update-debug",
+ "args": [],
+ "stopAtEntry": false,
+ "cwd": "${workspaceFolder}",
+ "environment": [],
+ "externalConsole": false,
+ "preLaunchTask": "Build update tool"
+ },
]
} \ No newline at end of file