-
Notifications
You must be signed in to change notification settings - Fork 710
Expand file tree
/
Copy pathCMakePresets.json
More file actions
112 lines (112 loc) · 3.13 KB
/
CMakePresets.json
File metadata and controls
112 lines (112 loc) · 3.13 KB
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
109
110
111
112
{
"version": 6,
"configurePresets": [
{
"name": "template-unix",
"hidden": true,
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/../builds/${presetName}",
"condition": {
"type": "notEquals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "template-windows",
"hidden": true,
"generator": "Visual Studio 17 2022",
"binaryDir": "${sourceDir}/../builds/${presetName}",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "deeplake-pg-dev",
"inherits": "template-unix",
"cacheVariables": {
"AL_PG": "ON",
"AL_ASSERTIONS": "ON"
}
},
{
"name": "deeplake-pg-dev-windows",
"inherits": "template-windows",
"cacheVariables": {
"AL_PG": "ON",
"AL_ASSERTIONS": "ON"
}
},
{
"name": "deeplake-pg-debug",
"inherits": "deeplake-pg-dev",
"cacheVariables": {
"AL_DEBUG": "ON"
}
},
{
"name": "deeplake-pg-debug-windows",
"inherits": "deeplake-pg-dev-windows",
"cacheVariables": {
"AL_DEBUG": "ON"
}
},
{
"name": "deeplake-pg-prod",
"inherits": "template-unix",
"cacheVariables": {
"AL_PG": "ON",
"AL_ASSERTIONS": "OFF",
"AL_DEBUG": "OFF"
}
},
{
"name": "deeplake-pg-prod-windows",
"inherits": "template-windows",
"cacheVariables": {
"AL_PG": "ON",
"AL_ASSERTIONS": "OFF",
"AL_DEBUG": "OFF"
}
}
],
"buildPresets": [
{
"name": "basic-template",
"hidden": true,
"jobs": 10
},
{
"name": "deeplake-pg-dev",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-dev"
},
{
"name": "deeplake-pg-dev-windows",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-dev-windows"
},
{
"name": "deeplake-pg-debug",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-debug"
},
{
"name": "deeplake-pg-debug-windows",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-debug-windows"
},
{
"name": "deeplake-pg-prod",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-prod"
},
{
"name": "deeplake-pg-prod-windows",
"inherits": "basic-template",
"configurePreset": "deeplake-pg-prod-windows"
}
]
}