-
-
Notifications
You must be signed in to change notification settings - Fork 176
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
58 lines (58 loc) · 1.44 KB
/
launch.vs.json
File metadata and controls
58 lines (58 loc) · 1.44 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
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "dll",
"exe": "C:/Path/To/Cemu/Cemu.exe",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Layer.dll (bin\\BetterVR_Layer.dll)",
"name": "Debug BetterVR With Meta XR Simulator",
"args": [
"--title-id 00050000101c9500"
],
"environment": [
{
"name": "VK_ADD_LAYER_PATH",
"value": "C:/Path/To/Your/Build/bin;"
},
{
"name": "VK_INSTANCE_LAYERS",
"value": "VK_LAYER_CREMENTIF_bettervr"
},
{
"name": "XR_RUNTIME_JSON",
"value": "${env.META_XR_SIMULATOR_PATH}/meta_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 (bin\\BetterVR_Layer.dll)",
"name": "Debug BetterVR With Default OpenXR Runtime",
"args": [
"--title-id 00050000101c9500"
],
"environment": [
{
"name": "VK_ADD_LAYER_PATH",
"value": "C:/Path/To/Your/Build/bin;"
},
{
"name": "VK_INSTANCE_LAYERS",
"value": "VK_LAYER_CREMENTIF_bettervr"
},
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
}
]
}