forked from xlgames-inc/XLE
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakeUserPresets.json.example
51 lines (47 loc) · 1.09 KB
/
CMakeUserPresets.json.example
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
{
"version": 3,
"configurePresets": [
{
"name": "user-presets",
"hidden": true,
"cacheVariables": {
"XLE_OPENGLES_ENABLE": false,
"XLE_VULKAN_ENABLE": true,
"XLE_APPLEMETAL_ENABLE": false,
"XLE_DX11_ENABLE": false,
"XLE_COMPRESSONATOR_DIR": "C:\\codelibrary\\Compressonator_4.1.5083",
"XLE_DXCOMPILER_DIR": "C:\\codelibrary\\dxcompiler"
}
},
{
"name": "debug",
"displayName": "Debug",
"inherits": ["debug-base", "user-presets"]
},
{
"name": "release",
"displayName": "Release",
"inherits": ["release-base", "user-presets"]
},
{
"name": "relwithdebinfo",
"displayName": "RelWithDebInfo",
"inherits": ["relwithdebinfo-base", "user-presets"]
},
{
"name": "msvc-debug",
"displayName": "MSVC-Debug",
"inherits": ["msvc-debug-base", "user-presets"]
},
{
"name": "msvc-release",
"displayName": "MSVC-Release",
"inherits": ["msvc-release-base", "user-presets"]
},
{
"name": "msvc-relwithdebinfo",
"displayName": "MSVC-RelWithDebInfo",
"inherits": ["msvc-relwithdebinfo-base", "user-presets"]
}
]
}