-
Notifications
You must be signed in to change notification settings - Fork 283
Expand file tree
/
Copy pathlaunch.json
More file actions
30 lines (29 loc) · 824 Bytes
/
launch.json
File metadata and controls
30 lines (29 loc) · 824 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
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug OvEditor (Debug)",
"type": "lldb",
"request": "launch",
"cwd": "${workspaceFolder}/Build/Debug",
"program": "${workspaceFolder}/Build/Debug/OvEditor",
"preLaunchTask": "Build (Debug x64)"
},
{
"name": "Debug OvEditor (Release)",
"type": "lldb",
"request": "launch",
"cwd": "${workspaceFolder}/Build/Release",
"program": "${workspaceFolder}/Build/Release/OvEditor",
"preLaunchTask": "Build (Release x64)"
},
{
"name": "Debug OvEditor (Publish)",
"type": "lldb",
"request": "launch",
"cwd": "${workspaceFolder}/Build/Publish",
"program": "${workspaceFolder}/Build/Publish/OvEditor",
"preLaunchTask": "Build (Publish x64)"
}
]
}