-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
63 lines (63 loc) · 1.64 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
{
"version": 7,
"cmakeMinimumRequired": {
"major": 3,
"minor": 27,
"patch": 1
},
"configurePresets": [
{
"name": "mbn52832dk",
"displayName": "MBN52832DK configuration",
"description": "Configuration for MBN52832DK development board using the nrf52832 chipset",
"binaryDir": "${sourceDir}/build/mbn52832dk",
"cacheVariables": {
"BOARD": {
"type": "STRING",
"value": "MBN52832DK"
},
"CHIPSET": {
"type": "STRING",
"value": "nrf52832"
}
}
}
],
"buildPresets": [
{
"name": "mbn52832dk",
"displayName": "MBN52832DK build",
"configurePreset": "mbn52832dk"
}
],
"workflowPresets": [
{
"name": "mbn52832dk",
"displayName": "MBN52832DK workflow",
"steps": [
{
"type": "configure",
"name": "mbn52832dk"
},
{
"type": "build",
"name": "mbn52832dk"
}
]
},
{
"name": "default",
"displayName": "Default workflow (MBN52832DK)",
"steps": [
{
"type": "configure",
"name": "mbn52832dk"
},
{
"type": "build",
"name": "mbn52832dk"
}
]
}
]
}