File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 0.2.0" ,
3+ "configurations" : [
4+ { // This configuration fails to attach the process for debugging as described here: https://github.com/microsoft/vscode-cpptools/issues/3161.
5+ "name" : " (lldb) Launch" ,
6+ "type" : " cppdbg" ,
7+ "request" : " launch" ,
8+ "cwd" : " ${workspaceFolder}" ,
9+ "program" : " ${command:cmake.launchTargetPath}" ,
10+ "args" : [],
11+ "stopAtEntry" : false ,
12+ "externalConsole" : false ,
13+ "MIMode" : " lldb" ,
14+ },
15+ { // Requires the CodeLLDB plugin, works for debugging
16+ "name" : " Launch" ,
17+ "type" : " lldb" ,
18+ "request" : " launch" ,
19+ "cwd" : " ${workspaceFolder}" ,
20+ "program" : " ${command:cmake.launchTargetPath}" ,
21+ "args" : [],
22+ }
23+ ]
24+ }
Original file line number Diff line number Diff line change 11{
2- "cmake.sourceDirectory" : " ${workspaceFolder}/src"
2+ "cmake.sourceDirectory" : " ${workspaceFolder}/src" ,
3+ "C_Cpp.intelliSenseEngine" : " Tag Parser" ,
4+ "files.associations" : {
5+ "*.h" : " c" ,
6+ },
37}
You can’t perform that action at this time.
0 commit comments