-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCMakePresets.json
413 lines (413 loc) · 12.5 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 27,
"patch": 0
},
"configurePresets": [
{
"name": "otk-child-build-dir-preset",
"hidden": true,
"displayName": "OptiX Toolkit child preset build directory",
"description": "Inherit from this preset to set the build directory from the preset name as a child of the source directory",
"binaryDir": "${sourceDir}/build-${presetName}"
},
{
"name": "otk-project-name-preset",
"hidden": true,
"displayName": "OptiX Toolkit project name containing preset",
"description": "Inherit from this preset to set the IDE project name to include the preset name",
"cacheVariables": {
"OTK_PROJECT_NAME": "OptiX Toolkit ${presetName}"
}
},
{
"name": "otk-demand-loading-library",
"hidden": true,
"displayName": "OptiX Toolkit DemandLoading standalone library",
"description": "Inherit from this preset to build only the DemandLoading library",
"cacheVariables": {
"OTK_LIBRARIES": {
"type": "STRING",
"value": "DemandLoading"
}
}
},
{
"name": "otk-memory-library",
"hidden": true,
"displayName": "OptiX Toolkit Memory standalone library",
"description": "Inherit from this preset to build only the Memory library",
"cacheVariables": {
"OTK_LIBRARIES": {
"type": "STRING",
"value": "Memory"
}
}
},
{
"name": "otk-omm-baking-library",
"hidden": true,
"displayName": "OptiX Toolkit OmmBaking standalone library",
"description": "Inherit from this preset to build only the OmmBaking library",
"cacheVariables": {
"OTK_LIBRARIES": {
"type": "STRING",
"value": "OmmBaking"
}
}
},
{
"name": "otk-shader-util-library",
"hidden": true,
"displayName": "OptiX Toolkit ShaderUtil standalone library",
"description": "Inherit from this preset to build only the ShaderUtil library",
"cacheVariables": {
"OTK_LIBRARIES": {
"type": "STRING",
"value": "ShaderUtil"
}
}
},
{
"name": "otk-no-examples",
"hidden": true,
"displayName": "Inherit from this preset to skip building of examples",
"cacheVariables": {
"OTK_BUILD_EXAMPLES": false
}
},
{
"name": "otk-no-tests",
"hidden": true,
"displayName": "Inherit from this preset to skip building of tests",
"cacheVariables": {
"BUILD_TESTING": false
}
},
{
"name": "otk-docs",
"hidden": true,
"displayName": "Inherit from this preset to build documentation",
"cacheVariables": {
"OTK_BUILD_DOCS": true
}
},
{
"name": "otk-use-fetch-content",
"hidden": true,
"displayName": "Use FetchContent for dependencies",
"description": "Inherit from this preset to use FetchContent to obtain dependencies",
"cacheVariables": {
"OTK_USE_VCPKG": false
}
},
{
"name": "otk-use-vcpkg",
"hidden": true,
"displayName": "Use vcpkg for dependencies",
"description": "Inherit from this preset to use vcpkg to obtain dependencies",
"cacheVariables": {
"OTK_USE_VCPKG": true
}
},
{
"name": "otk-use-open-image-io",
"hidden": true,
"displayName": "Use OpenImageIO for additional texture file formats",
"description": "Inherit from this preset to use OpenImageIO to support PNG and JPEG textures",
"cacheVariables": {
"OTK_USE_OIIO": true
}
},
{
"name": "otk-use-openexr",
"hidden": true,
"displayName": "Use OpenEXR for EXR texture file formats",
"description": "Inherit from this preset to use OpenEXR for EXR textures",
"cacheVariables": {
"OTK_USE_OPENEXR": true
}
},
{
"name": "otk-warnings-as-errors",
"hidden": true,
"displayName": "Treat compiler warnings as errors",
"description": "Inherit from this preset to treat compiler warnings as errors.",
"cacheVariables": {
"OTK_WARNINGS_AS_ERRORS": true
}
},
{
"name": "otk-default",
"displayName": "OptiX Toolkit configured with vcpkg for dependencies and default settings",
"description": "Use vcpkg for dependencies, build all tests and examples.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg" ]
},
{
"name": "otk-fetch-content",
"displayName": "OptiX Toolkit configured with FetchContent for dependencies",
"description": "Use FetchContent for dependencies, build all tests and examples.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-fetch-content" ]
},
{
"name": "otk-open-image-io",
"displayName": "OptiX Toolkit configured with vcpkg OpenImageIO for additional texture file formats",
"description": "Use OpenImageIO from vcpkg for additional texture file formats",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg", "otk-use-open-image-io" ]
},
{
"name": "otk-demand-loading",
"displayName": "OptiX Toolkit configured for only the DemandLoading library",
"description": "Use vcpkg for dependencies, build all tests and examples for the DemandLoading library.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg", "otk-demand-loading-library" ]
},
{
"name": "otk-memory",
"displayName": "OptiX Toolkit configured for only the Memory library",
"description": "Use vcpkg for dependencies, build all tests for the Memory library; there are no examples.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg", "otk-memory-library", "otk-no-examples" ]
},
{
"name": "otk-omm-baking",
"displayName": "OptiX Toolkit configured for only the OmmBaking library",
"description": "Use vcpkg for dependencies, build all tests and examples for the OmmBaking library.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg", "otk-omm-baking-library" ]
},
{
"name": "otk-shader-util",
"displayName": "OptiX Toolkit configured for only the ShaderUtil library",
"description": "Use vcpkg for dependencies, build all tests for the ShaderUtil library; there are no examples.",
"inherits": [ "otk-child-build-dir-preset", "otk-project-name-preset", "otk-use-vcpkg", "otk-shader-util-library", "otk-no-examples" ]
}
],
"buildPresets": [
{
"name": "otk-default",
"displayName": "OptiX Toolkit build with default settings",
"configuration": "Release",
"configurePreset": "otk-default"
},
{
"name": "otk-fetch-content",
"displayName": "OptiX Toolkit build with FetchContent settings",
"configuration": "Release",
"configurePreset": "otk-fetch-content"
},
{
"name": "otk-open-image-io",
"displayName": "OptiX Toolkit build with OpenImageIO settings",
"configuration": "Release",
"configurePreset": "otk-open-image-io"
},
{
"name": "otk-demand-loading",
"displayName": "OptiX Toolkit build for only the DemandLoading library.",
"configuration": "Release",
"configurePreset": "otk-demand-loading"
},
{
"name": "otk-memory",
"displayName": "OptiX Toolkit build for only the Memory library.",
"configuration": "Release",
"configurePreset": "otk-memory"
},
{
"name": "otk-omm-baking",
"displayName": "OptiX Toolkit build for only the OmmBaking library.",
"configuration": "Release",
"configurePreset": "otk-omm-baking"
},
{
"name": "otk-shader-util",
"displayName": "OptiX Toolkit build for only the ShaderUtil library.",
"configuration": "Release",
"configurePreset": "otk-shader-util"
}
],
"testPresets": [
{
"name": "otk-settings",
"displayName": "OptiX Toolkit test preset common settings",
"hidden": true,
"configuration": "Release",
"execution": {
"timeout": 1500
},
"output": {
"outputOnFailure": true
}
},
{
"name": "otk-default",
"displayName": "OptiX Toolkit test with default settings",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-default"
},
{
"name": "otk-fetch-content",
"displayName": "OptiX Toolkit test with FetchContent settings",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-fetch-content"
},
{
"name": "otk-open-image-io",
"displayName": "OptiX Toolkit test with OpenImageIO settings",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-open-image-io"
},
{
"name": "otk-demand-loading",
"displayName": "OptiX Toolkit test for the DemandLoading library",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-demand-loading"
},
{
"name": "otk-memory",
"displayName": "OptiX Toolkit test for the Memory library",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-memory"
},
{
"name": "otk-omm-baking",
"displayName": "OptiX Toolkit test for the OmmBaking library",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-omm-baking"
},
{
"name": "otk-shader-util",
"displayName": "OptiX Toolkit test for the ShaderUtil library",
"inherits": [ "otk-settings" ],
"configurePreset": "otk-shader-util"
}
],
"workflowPresets": [
{
"name": "otk-default",
"displayName": "OptiX Toolkit default workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-default"
},
{
"type": "build",
"name": "otk-default"
},
{
"type": "test",
"name": "otk-default"
}
]
},
{
"name": "otk-fetch-content",
"displayName": "OptiX Toolkit FetchContent workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-fetch-content"
},
{
"type": "build",
"name": "otk-fetch-content"
},
{
"type": "test",
"name": "otk-fetch-content"
}
]
},
{
"name": "otk-open-image-io",
"displayName": "OptiX Toolkit OpenImageIO workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-open-image-io"
},
{
"type": "build",
"name": "otk-open-image-io"
},
{
"type": "test",
"name": "otk-open-image-io"
}
]
},
{
"name": "otk-demand-loading",
"displayName": "OptiX Toolkit DemandLoading library workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-demand-loading"
},
{
"type": "build",
"name": "otk-demand-loading"
},
{
"type": "test",
"name": "otk-demand-loading"
}
]
},
{
"name": "otk-memory",
"displayName": "OptiX Toolkit Memory library workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-memory"
},
{
"type": "build",
"name": "otk-memory"
},
{
"type": "test",
"name": "otk-memory"
}
]
},
{
"name": "otk-omm-baking",
"displayName": "OptiX Toolkit OmmBaking library workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-omm-baking"
},
{
"type": "build",
"name": "otk-omm-baking"
},
{
"type": "test",
"name": "otk-omm-baking"
}
]
},
{
"name": "otk-shader-util",
"displayName": "OptiX Toolkit ShaderUtil library workflow: configure, build and test",
"steps": [
{
"type": "configure",
"name": "otk-shader-util"
},
{
"type": "build",
"name": "otk-shader-util"
},
{
"type": "test",
"name": "otk-shader-util"
}
]
}
]
}