-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCMakePresets.json
38 lines (38 loc) · 998 Bytes
/
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
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}"
}
},
{
"name": "debug",
"inherits": "base",
"displayName": "Debug",
"description": "Debug build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"SHADER_VALIDATION": "ON"
}
},
{
"name": "release",
"inherits": "base",
"displayName": "Release",
"description": "Optimized build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}