-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCMakePresets.json
83 lines (83 loc) · 2.21 KB
/
CMakePresets.json
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
{
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"version": 3,
"configurePresets": [
{
"hidden": true,
"name": "default",
"description": "default-for-all",
"generator": "Ninja",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}"
}
},
{
"name": "directx12-win-ship",
"description": "The shipping build for descent.",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"GRAPHICS_API": "DirectX12"
}
},
{
"name": "directx12-win-debug",
"description": "Normal directx12 raytrace debug build.",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"GRAPHICS_API": "DirectX12"
}
},
{
"name": "directx12-win-release",
"description": "Directx12_build",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"GRAPHICS_API": "DirectX12"
}
},
{
"name": "directx12-win-debug-quick",
"description": "Directx12_build that skips skips the menu",
"inherits": "directx12-win-debug",
"cacheVariables": {
"QUICK_START": "true",
"GRAPHICS_API": "DirectX12"
}
},
{
"name": "directx12-win-release-quick",
"description": "Directx12_build that skips skips the menu",
"inherits": "directx12-win-release",
"cacheVariables": {
"QUICK_START": "true",
"GRAPHICS_API": "DirectX12"
}
},
{
"name": "openGL-x64-debug",
"description": "OpenGL Build for x64, no x86 build exists",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"GRAPHICS_API": "OpenGL"
}
},
{
"name": "openGL-x64-release",
"description": "OpenGL Build for x64, no x86 build exists",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"GRAPHICS_API": "OpenGL"
}
}
]
}