Created
May 13, 2025 10:16
-
-
Save blumus/f543fe1c2fc68b8fa7bdd10716519166 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// launch.json | |
// install CodeLLDB vscode extention by Vadim Chugunov | |
{ | |
"version": "2.0.0", | |
"configurations": [ | |
{ | |
"name": "C/C++: g++ build and debug active file", | |
"type": "lldb", | |
"request": "launch", | |
"program":"${workspaceRoot}/${fileDirnameBasename}", | |
"args": [], | |
"cwd": "${workspaceRoot}", | |
//"preLaunchTask": "Make" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment