forked from howsoai/amalgam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch.example.json
34 lines (34 loc) · 946 Bytes
/
launch.example.json
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
{
"comment": "Amalgam VSCode Debugging Examples (CMake built)",
"version": "0.2.0",
"configurations": [
{
"name": "debug-windows",
"type": "cppvsdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [ "amlg_code/full_test.amlg" ],
"cwd": "${workspaceFolder}/src/Amalgam/",
"stopAtEntry": false
},
{
"name": "debug-linux",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [ "amlg_code/full_test.amlg" ],
"cwd": "${workspaceFolder}/src/Amalgam/",
"stopAtEntry": false
},
{
"name": "debug-macos",
"type": "cppdbg",
"request": "launch",
"program": "${command:cmake.launchTargetPath}",
"args": [ "amlg_code/full_test.amlg" ],
"cwd": "${workspaceFolder}/src/Amalgam/",
"MIMode": "lldb",
"stopAtEntry": false
}
]
}