-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakePresets.json
59 lines (59 loc) · 1.58 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "ninja_generator",
"hidden": true,
"generator": "Ninja"
},
{
"name": "release_native",
"inherits": "ninja_generator",
"binaryDir": "${sourceDir}/build_release_cpu_native",
"cacheVariables": {
"ECB_PARAM_DEBUG": "OFF",
"ECB_PARAM_SAN": "OFF",
"ECB_PARAM_TESTS": "ON"
}
},
{
"name": "debug_native_nosan",
"inherits": "ninja_generator",
"binaryDir": "${sourceDir}/build_debug_cpu_native",
"cacheVariables": {
"ECB_PARAM_DEBUG": "ON",
"ECB_PARAM_SAN": "OFF",
"ECB_PARAM_TESTS": "ON"
}
},
{
"name": "debug_native_san",
"inherits": "ninja_generator",
"binaryDir": "${sourceDir}/build_debug_cpu_native",
"cacheVariables": {
"ECB_PARAM_DEBUG": "ON",
"ECB_PARAM_SAN": "ON",
"ECB_PARAM_TESTS": "ON"
}
}
],
"buildPresets": [
{
"name": "debug_nosan",
"configurePreset": "debug_native_nosan"
},
{
"name": "debug_san",
"configurePreset": "debug_native_san"
},
{
"name": "release",
"configurePreset": "release_native"
}
]
}