forked from an-dr/microlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmicrolog.code-workspace
108 lines (107 loc) · 3.17 KB
/
microlog.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"folders": [
{
"path": "."
}
],
"settings": {},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Clean",
"type": "shell",
"command": "rm -r ${workspaceFolder}/example/build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
},
{
"label": "Configure",
"type": "shell",
"command": "meson",
"args": [
"setup",
"build",
// "--reconfigure",
"--cross-file=cross-gcc.txt",
"--buildtype=debug",
],
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"cwd": "${workspaceFolder}/example",
"env": {
"ABCMAKE_PATH": "${workspaceFolder}/src"
}
},
"problemMatcher": []
},
{
"label": "Build",
"type": "shell",
"command": "meson",
"args": [
"compile",
"-C",
"build",
],
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"cwd": "${workspaceFolder}/example"
},
"problemMatcher": [],
},
{
"label": "Run",
"type": "shell",
"command": "${workspaceFolder}/example/build/example",
"group": {
"kind": "test",
"isDefault": true
},
"problemMatcher": [],
"dependsOn": [
"Build"
]
},
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/example/build/example",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"miDebuggerPath": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
},
}