-
Notifications
You must be signed in to change notification settings - Fork 2
/
launch.vs.example.json
53 lines (53 loc) · 1.39 KB
/
launch.vs.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"comment": "Amalgam VisualStudio2022 Debugging Examples (CMake built)",
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"comment": "Windows multi-threaded",
"type": "exe",
"project": "CMakeLists.txt",
"projectTarget": "amalgam-mt.exe",
"name": "amalgam-mt.exe",
"currentDir": "${workspaceRoot}/src/Amalgam/",
"args": [
"amlg_code/full_test.amlg"
]
},
{
"comment": "Windows single threaded",
"type": "exe",
"project": "CMakeLists.txt",
"projectTarget": "amalgam-st.exe",
"name": "amalgam-st.exe",
"currentDir": "${workspaceRoot}/src/Amalgam/",
"args": [
"amlg_code/full_test.amlg"
]
},
{
"comment": "Remote liunx multi-threaded (WSL: http://aka.ms/vslinuxdebug)",
"type": "cppgdb",
"name": "amalgam-mt",
"project": "CMakeLists.txt",
"projectTarget": "amalgam-mt",
"debuggerConfiguration": "gdb",
"cwd": "src/Amalgam/",
"args": [
"amlg_code/full_test.amlg"
]
},
{
"comment": "Remote liunx single threaded (WSL: http://aka.ms/vslinuxdebug)",
"type": "cppgdb",
"name": "amalgam-st",
"project": "CMakeLists.txt",
"projectTarget": "amalgam-st",
"debuggerConfiguration": "gdb",
"cwd": "src/Amalgam/",
"args": [
"amlg_code/full_test.amlg"
]
}
]
}