-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakePresets.json
108 lines (108 loc) · 2.99 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"version": 3,
"configurePresets": [
{
"name": "default",
"description": "Default build",
"binaryDir": "${sourceDir}/build/default",
"installDir": "${sourceDir}/install/default",
"cacheVariables": {
"URC_FETCH_DEPS": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_POSITION_INDEPENDENT_CODE": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_BUILD_TYPE": {
"type": "STRING",
"value": "Release"
}
}
},
{
"name": "dev",
"description": "Developer build",
"binaryDir": "${sourceDir}/build/dev",
"installDir": "${sourceDir}/install/dev",
"cacheVariables": {
"URC_FETCH_DEPS": {
"type": "BOOL",
"value": "ON"
},
"URC_ENABLE_TESTS": {
"type": "BOOL",
"value": "ON"
},
"URC_ENABLE_COVERAGE": {
"type": "BOOL",
"value": "ON"
},
"URC_ENABLE_VALGRIND": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_BUILD_TYPE": {
"type": "STRING",
"value": "Debug"
}
}
},
{
"name": "fuzzy",
"description": "Developer build",
"binaryDir": "${sourceDir}/build/fuzzy",
"installDir": "${sourceDir}/install/fuzzy",
"cacheVariables": {
"URC_FETCH_DEPS": {
"type": "BOOL",
"value": "ON"
},
"URC_ENABLE_TESTS": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_C_COMPILER": {
"type": "STRING",
"value": "clang"
},
"URC_ENABLE_FUZZ_TESTS": {
"type": "BOOL",
"value": "ON"
},
"CMAKE_BUILD_TYPE": {
"type": "STRING",
"value": "Debug"
}
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default",
"jobs": 16
},
{
"name": "dev",
"configurePreset": "dev",
"jobs": 16
},
{
"name": "fuzzy",
"configurePreset": "fuzzy",
"jobs": 16
}
],
"testPresets": [
{
"name": "dev",
"configurePreset": "dev"
},
{
"name": "fuzzy",
"configurePreset": "fuzzy"
}
]
}