-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakePresets.json
87 lines (87 loc) · 1.55 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
84
85
86
87
{
"version": 4,
"cmakeMinimumRequired":
{
"major": 3,
"minor": 23,
"patch": 0
},
"configurePresets":
[
{
"name": "debug",
"binaryDir": "${sourceDir}/build/debug",
"cacheVariables":
{
"TZ_PROFILE": "0",
"CMAKE_BUILD_TYPE":
{
"type": "string",
"value": "debug"
}
},
"hidden": true
},
{
"name": "release",
"binaryDir": "${sourceDir}/build/release",
"cacheVariables":
{
"TZ_PROFILE": "0",
"CMAKE_BUILD_TYPE":
{
"type": "string",
"value": "release"
}
},
"hidden": true
},
{
"name": "profile",
"binaryDir": "${sourceDir}/build/profile",
"cacheVariables":
{
"TZ_PROFILE": "1",
"CMAKE_BUILD_TYPE":
{
"type": "string",
"value": "profile"
}
},
"hidden": true
},
{
"name": "vulkan",
"cacheVariables":
{
"TOPAZ_RENDER_API":
{
"type": "string",
"value": "vulkan"
}
},
"hidden": true
},
{
"name": "host_vulkan_debug",
"binaryDir": "${sourceDir}/build/${hostSystemName}_vulkan_debug",
"displayName": "Vulkan Debug",
"description": "A vulkan debug build.",
"inherits": [ "vulkan", "debug" ]
},
{
"name": "host_vulkan_release",
"binaryDir": "${sourceDir}/build/${hostSystemName}_vulkan_release",
"displayName": "Vulkan Release",
"description": "A vulkan release build.",
"inherits": [ "vulkan", "release" ]
},
{
"name": "host_vulkan_profile",
"binaryDir": "${sourceDir}/build/${hostSystemName}_vulkan_profile",
"displayName": "Vulkan Profile",
"description": "A vulkan profile build.",
"inherits": [ "vulkan", "profile" ]
}
]
}