-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCMakePresets.json
More file actions
50 lines (50 loc) · 1.65 KB
/
CMakePresets.json
File metadata and controls
50 lines (50 loc) · 1.65 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 15,
"patch": 0
},
"configurePresets": [
{
"name": "oss_fuzz",
"cacheVariables": {
"CMAKE_VERBOSE_MAKEFILE": "ON",
"BUILD_SHARED_LIBS": "OFF",
"OPENEXR_FORCE_INTERNAL_IMATH": "ON",
"OPENEXR_FORCE_INTERNAL_DEFLATE": "ON",
"OPENEXR_FORCE_INTERNAL_OPENJPH": "ON",
"OPENEXR_BUILD_TOOLS": "OFF",
"OPENEXR_BUILD_EXAMPLES": "OFF",
"OPENEXR_BUILD_DOCS": "OFF",
"OPENEXR_BUILD_OSS_FUZZ": "ON"
}
},
{
"name": "release",
"displayName": "Release (Unix Makefiles)",
"description": "Release build with Unix Makefiles",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/_build/release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"OPENEXR_BUILD_TOOLS": "ON",
"OPENEXR_BUILD_EXAMPLES": "ON",
"OPENEXR_BUILD_PYTHON": "ON"
}
},
{
"name": "debug",
"displayName": "Debug (Unix Makefiles)",
"description": "Debug build with Unix Makefiles",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/_build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"OPENEXR_BUILD_TOOLS": "ON",
"OPENEXR_BUILD_EXAMPLES": "ON",
"OPENEXR_BUILD_PYTHON": "ON"
}
}
]
}