-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCMakeUserPresets.json.TEMPLATE
More file actions
96 lines (95 loc) · 2.16 KB
/
Copy pathCMakeUserPresets.json.TEMPLATE
File metadata and controls
96 lines (95 loc) · 2.16 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "win64",
"inherits": "win64-template",
"cacheVariables": {
"GSTREAMER_ROOT": {
"type": "PATH",
"value": "PATH_TO_GSTREAMER_INSTALLATION"
},
"Vmb_DIR": {
"type": "PATH",
"value": "PATH_TO_VimbaX/api/lib/cmake/vmb"
}
}
},
{
"name": "linux64",
"inherits": "linux64-template",
"displayName": "Linux 64 Release Config",
"description": "Linux 64 Release Config",
"cacheVariables": {
"Vmb_DIR": {
"type": "PATH",
"value": "PATH_TO_VimbaX/api/lib/cmake/vmb"
}
}
},
{
"name": "linux64-debug",
"inherits": ["linux64-debug-template", "linux64"],
"displayName": "Linux 64 Debug Config",
"description": "Linux 64 Debug Config"
},
{
"name": "arm64",
"inherits": "arm64-template",
"displayName": "Linux ARM64 Release Config",
"description": "Linux ARM64 Release Config",
"cacheVariables": {
}
},
{
"name": "arm64-debug",
"inherits": ["arm64-debug-template", "arm64"],
"displayName": "Linux ARM64 Debug Config",
"description": "Linux ARM64 Debug Config"
}
],
"buildPresets": [
{
"name": "build-template",
"hidden": true,
"jobs": 8,
"targets": ["gstvmbsrc"]
},
{
"name": "win64",
"inherits": "build-template",
"configurePreset": "win64",
"configuration": "Release"
},
{
"name": "win64-debug",
"inherits": "win64",
"configuration": "Debug"
},
{
"name": "linux64",
"inherits": "build-template",
"configurePreset": "linux64"
},
{
"name": "linux64-debug",
"inherits": "build-template",
"configurePreset": "linux64-debug"
},
{
"name": "arm64",
"inherits": "build-template",
"configurePreset": "arm64"
},
{
"name": "arm64-debug",
"inherits": "build-template",
"configurePreset": "arm64-debug"
}
]
}