-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathlaunch.vs.json
More file actions
43 lines (43 loc) · 1.11 KB
/
launch.vs.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Launcher.exe (Install)",
"name": "Run BetterVR With Meta XR Simulator Runtime",
"environment": [
{
"name": "XR_RUNTIME_JSON",
"value": "${env.META_XR_SIMULATOR_PATH}/meta_openxr_simulator.json"
},
{
"name": "VK_LOADER_DEBUG",
"value": "all"
}
]
},
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Launcher.exe (Install)",
"name": "Run BetterVR With Meta XR Simulator Runtime (interpreter)",
"args": [
"--force-multicore-interpreter"
],
"environment": [
{
"name": "XR_RUNTIME_JSON",
"value": "${env.META_XR_SIMULATOR_PATH}/meta_openxr_simulator.json"
}
]
},
{
"type": "default",
"project": "CMakeLists.txt",
"projectTarget": "BetterVR_Launcher.exe (Install)",
"name": "Run BetterVR Using Default OpenXR Runtime"
}
]
}