-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlox.code-workspace
More file actions
45 lines (45 loc) · 938 Bytes
/
Copy pathlox.code-workspace
File metadata and controls
45 lines (45 loc) · 938 Bytes
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
{
"folders": [
{ "path": "." }
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "[DBG][CMake] Launch",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}/bin",
"stopAtEntry": false,
"args": [ "assets/functions.lox" ],
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "gdb"
},
"osx": {
"MIMode": "lldb",
"miDebuggerPath": "lldb-mi"
},
"windows": {
"MIMode": "gdb",
"miDebuggerPath": "gdb.exe"
},
},
{
"name": "[VSDBG][CMake] Launch",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"cwd": "${workspaceFolder}/bin",
"args": [ "assets/functions.lox" ],
"stopAtEntry": false
}
],
"compounds": []
},
"settings": {
"cmake.generator": "Ninja Multi-Config",
"cmake.parallelJobs": 12,
}
}