-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakePresets.json
64 lines (64 loc) · 1.79 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
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 22,
"patch": 1
},
"configurePresets": [
{
"name": "base-ada-config",
"hidden": true,
"environment": {
"ZEPHYR_TOOLCHAIN_VARIANT": "zephyr",
"ADA": "arm-zephyr-eabi-gcc",
"ADAFLAGS": "--RTS=${workspaceFolder}/modules/gnat -I${workspaceFolder}/build -gnat12",
"CC": "arm-zephyr-eabi-g++"
}
},
{
"name": "base-ada-gen-spec",
"hidden": true,
"cacheVariables": {
"EXTRA_CFLAGS": "-fdump-ada-spec"
}
},
{
"name": "base-app-config",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"BOARD": "stm32f429i_disc1",
"OUT_OF_TREE_BOARD": "OFF"
}
},
{
"name": "ada-rtt",
"inherits": [
"base-app-config",
"base-ada-config"
],
"displayName": "RTT shell",
"description": "Zephyr project configuration with RTT shell",
"cacheVariables": {
"CONF_FILE": "prj_rtt_shell.conf"
}
},
{
"name": "ada-uart",
"inherits": [
"base-app-config",
"base-ada-config"
],
"displayName": "UART shell",
"description": "Zephyr project configuration with UART shell",
"cacheVariables": {
"CONF_FILE": "prj_uart_shell.conf"
}
}
],
"buildPresets": [],
"testPresets": [],
"vendor": {}
}