File tree Expand file tree Collapse file tree 2 files changed +41
-0
lines changed
Expand file tree Collapse file tree 2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // 使用 IntelliSense 了解相关属性。
3+ // 悬停以查看现有属性的描述。
4+ // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "name" : " clang++ - Launch" ,
9+ "type" : " cppdbg" ,
10+ "request" : " launch" ,
11+ "program" : " ${workspaceFolder}/build/bin/logtest" ,
12+ "args" : [],
13+ "stopAtEntry" : false ,
14+ "cwd" : " ${workspaceFolder}" ,
15+ "environment" : [],
16+ "externalConsole" : false ,
17+ "MIMode" : " gdb" ,
18+ "setupCommands" : [
19+ {
20+ "description" : " gdb printing" ,
21+ "text" : " -enable-pretty-printing" ,
22+ "ignoreFailures" : true
23+ }
24+ ],
25+ "preLaunchTask" : " Build" ,
26+ "miDebuggerPath" : " /usr/bin/gdb"
27+ }
28+ ]
29+ }
Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "label" : " Build" ,
8+ "type" : " shell" ,
9+ "command" : " cd build && cmake -DCMAKE_BUILD_TYPE=Debug -S ../src/ -B . && make"
10+ }
11+ ]
12+ }
You can’t perform that action at this time.
0 commit comments