-
-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
114 lines (114 loc) · 2.83 KB
/
Copy pathlaunch.vs.json
File metadata and controls
114 lines (114 loc) · 2.83 KB
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
109
110
111
112
113
114
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Launcher.exe (Install)",
"name": "Debug BetterVR Launcher With Simulator",
"environment": [
{
"name": "XR_RUNTIME_JSON",
"value": "${workspaceRoot}/OpenXRSimulator/openxr_simulator.json"
},
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
},
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Launcher.exe (Install)",
"name": "Debug BetterVR Launcher",
"environment": [
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
},
{
"type": "dll",
"exe": "C:/Path/To/Cemu/Cemu.exe",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Layer.dll (Install)",
"name": "Debug BetterVR With Simulator",
"args": [
"--title-id 00050000101c9500"
],
"environment": [
{
"name": "VK_ADD_LAYER_PATH",
"value": "${workspaceRoot}/Cemu;"
},
{
"name": "VK_INSTANCE_LAYERS",
"value": "VK_LAYER_CREMENTIF_bettervr"
},
{
"name": "XR_RUNTIME_JSON",
"value": "${workspaceRoot}/OpenXRSimulator/openxr_simulator.json"
},
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
},
{
"type": "dll",
"exe": "C:/Path/To/Cemu/Cemu.exe",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Layer.dll (Install)",
"name": "Debug BetterVR With Default OpenXR Runtime",
"args": [
"--title-id 00050000101c9500"
],
"environment": [
{
"name": "VK_ADD_LAYER_PATH",
"value": "${workspaceRoot}/Cemu;"
},
{
"name": "VK_INSTANCE_LAYERS",
"value": "VK_LAYER_CREMENTIF_bettervr"
},
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
},
{
"type": "dll",
"exe": "C:/Path/To/Cemu/Cemu.exe",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Layer.dll (Install)",
"name": "Debug BetterVR With RenderDoc",
"args": [
"--title-id 00050000101c9500"
],
"environment": [
{
"name": "VK_ADD_LAYER_PATH",
"value": "${workspaceRoot}/Cemu;C:/Program Files/RenderDoc;"
},
{
"name": "VK_INSTANCE_LAYERS",
"value": "VK_LAYER_CREMENTIF_bettervr;VK_LAYER_RENDERDOC_Capture"
},
{
"name": "ENABLE_VULKAN_RENDERDOC_CAPTURE",
"value": "0"
},
{
"name": "VK_LOADER_DEBUG",
"value": "error"
}
]
}
]
}