-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakePresets.json
119 lines (119 loc) · 2.97 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "config-common",
"hidden": true,
"description": "Common configuration",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build",
"warnings": {
"deprecated": true,
"uninitialized": true
},
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_CONFIGURATION_TYPES": "Release;Debug",
"CMAKE_CROSS_CONFIGS": "all",
"CMAKE_DEFAULT_BUILD_TYPE": "Release",
"CMAKE_DEFAULT_CONFIGS": "Release",
"CMAKE_PREFIX_PATH": "${sourceDir}/submodules/nunavut"
}
},
{
"name": "config-linux-debian",
"hidden": true,
"cacheVariables": {
"PLATFORM_LINUX_TYPE": "debian",
"PLATFORM_OS_TYPE": "generic"
}
},
{
"name": "config-linux-bsd",
"hidden": true,
"cacheVariables": {
"PLATFORM_LINUX_TYPE": "bsd",
"PLATFORM_OS_TYPE": "generic"
}
},
{
"name": "config-linux-darwin",
"hidden": true,
"inherits": [
"config-linux-bsd"
],
"cacheVariables": {
"PLATFORM_OS_TYPE": "Darwin"
}
},
{
"name": "OCVSMD-Debian",
"displayName": "Debian Linux OCVSMD",
"description": "Configures OCVSMD for Linux distributions derived from Debian.",
"inherits": [
"config-common",
"config-linux-debian"
]
},
{
"name": "OCVSMD-Darwin",
"displayName": "Darwin Linux OCVSMD",
"description": "Configures OCVSMD for MacOS",
"inherits": [
"config-common",
"config-linux-darwin"
],
"cacheVariables": {
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++"
}
}
],
"buildPresets": [
{
"name": "OCVSMD-Debian-Debug",
"displayName": "Debian Linux OCVSMD (Debug)",
"description": "Builds OCVSMD for Debian Linux distributions",
"configurePreset": "OCVSMD-Debian",
"configuration": "Debug",
"targets": [
"ocvsmd"
]
},
{
"name": "OCVSMD-Debian-Release",
"displayName": "Debian Linux OCVSMD (Release)",
"description": "Builds OCVSMD for Debian Linux distributions",
"configurePreset": "OCVSMD-Debian",
"configuration": "Release",
"targets": [
"ocvsmd"
]
},
{
"name": "OCVSMD-Darwin-Debug",
"displayName": "Darwin Linux OCVSMD (Debug)",
"description": "Builds OCVSMD for MacOS",
"configurePreset": "OCVSMD-Darwin",
"configuration": "Debug",
"targets": [
"ocvsmd"
]
},
{
"name": "OCVSMD-Darwin-Release",
"displayName": "Darwin Linux OCVSMD (Release)",
"description": "Builds OCVSMD for MacOS",
"configurePreset": "OCVSMD-Darwin",
"configuration": "Release",
"targets": [
"ocvsmd"
]
}
]
}