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
|
#!/usr/bin/env python3
import os
import json
from pathlib import Path
def main():
board_list = []
board_list_esp = []
# Find all board.cmake files, exclude espressif
for root, dirs, files in os.walk("hw/bsp"):
for file in files:
if file == "board.cmake" and "espressif" not in root:
board_list.append(os.path.basename(root))
# Find all espressif boards
for root, dirs, files in os.walk("hw/bsp/espressif"):
for file in files:
if file == "board.cmake":
board_list_esp.append(os.path.basename(root))
print('Generating presets for the following boards:')
print(board_list)
# Generate the presets
presets = {}
presets['version'] = 6
# Configure presets
presets['configurePresets'] = [
{"name": "default",
"hidden": True,
"description": r"Configure preset for the ${presetName} board",
"generator": "Ninja Multi-Config",
"binaryDir": r"${sourceDir}/cmake-build-${presetName}",
"cacheVariables": {
"CMAKE_DEFAULT_BUILD_TYPE": "RelWithDebInfo",
"BOARD": r"${presetName}"
}},
{"name": "default single config",
"hidden": True,
"description": r"Configure preset for the ${presetName} board",
"generator": "Ninja",
"binaryDir": r"${sourceDir}/cmake-build-${presetName}",
"cacheVariables": {
"BOARD": r"${presetName}"
}}]
# Add non-espressif boards
presets['configurePresets'].extend(
sorted(
[
{
'name': board,
'inherits': 'default'
}
for board in board_list
], key=lambda x: x['name']
)
)
# Add espressif boards with single config generator
presets['configurePresets'].extend(
sorted(
[
{
'name': board,
'inherits': 'default single config'
}
for board in board_list_esp
], key=lambda x: x['name']
)
)
# Combine all boards
board_list.extend(board_list_esp)
# Build presets
# no inheritance since 'name' doesn't support macro expansion
presets['buildPresets'] = sorted(
[
{
'name': board,
'description': "Build preset for the " + board + " board",
'configurePreset': board
}
for board in board_list
], key=lambda x: x['name']
)
# Workflow presets
presets['workflowPresets'] = sorted(
[
{
"name": board,
"steps": [
{
"type": "configure",
"name": board
},
{
"type": "build",
"name": board
}
]
}
for board in board_list
], key=lambda x: x['name']
)
path_boardpresets = "hw/bsp/BoardPresets.json"
with open(path_boardpresets, "w") as f:
f.write('{}\n'.format(json.dumps(presets, indent=2)))
# Generate presets for examples
presets = {
"version": 6,
"include": [
]
}
example_list = []
for root, dirs, files in os.walk("examples"):
for file in files:
# Filter out ESP-IDF CMakeLists.txt in src folder
if file == "CMakeLists.txt" and os.path.basename(root) != 'src':
presets['include'] = [os.path.relpath(path_boardpresets, root).replace(os.sep, '/')]
with open(os.path.join(root, 'CMakePresets.json'), 'w') as f:
f.write('{}\n'.format(json.dumps(presets, indent=2)))
example_list.append(os.path.basename(root))
print('Generating presets for the following examples:')
print(example_list)
if __name__ == "__main__":
main()
|