File tree Expand file tree Collapse file tree 4 files changed +48
-0
lines changed Expand file tree Collapse file tree 4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version" : " 0.2.0" ,
6
+ "configurations" : [
7
+ {
8
+ "name" : " clang++ - Build and debug active file" ,
9
+ "type" : " cppdbg" ,
10
+ "request" : " launch" ,
11
+ "program" : " ${fileDirname}/${fileBasenameNoExtension}" ,
12
+ "args" : [],
13
+ "stopAtEntry" : false ,
14
+ "cwd" : " ${workspaceFolder}" ,
15
+ "environment" : [],
16
+ "externalConsole" : false ,
17
+ "MIMode" : " lldb" ,
18
+ "preLaunchTask" : " C/C++: clang++ build active file"
19
+ }
20
+ ]
21
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "tasks" : [
3
+ {
4
+ "type" : " cppbuild" ,
5
+ "label" : " C/C++: clang++ build active file" ,
6
+ "command" : " /usr/bin/clang++" ,
7
+ "args" : [
8
+ " -g" ,
9
+ " ${file}" ,
10
+ " -o" ,
11
+ " ${fileDirname}/${fileBasenameNoExtension}"
12
+ ],
13
+ "options" : {
14
+ "cwd" : " ${workspaceFolder}"
15
+ },
16
+ "problemMatcher" : [
17
+ " $gcc"
18
+ ],
19
+ "group" : {
20
+ "kind" : " build" ,
21
+ "isDefault" : true
22
+ },
23
+ "detail" : " Task generated by Debugger."
24
+ }
25
+ ],
26
+ "version" : " 2.0.0"
27
+ }
You can’t perform that action at this time.
0 commit comments