-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCMakePresets.json
More file actions
96 lines (96 loc) · 2.59 KB
/
CMakePresets.json
File metadata and controls
96 lines (96 loc) · 2.59 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": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "simulation",
"displayName": "Simulation Configure",
"description": "Simulation platform build in 'build/simulation' folder",
"binaryDir": "${sourceDir}/build/simulation",
"inherits": "common",
"cacheVariables": {
"OT_DNS_CLIENT_OVER_TCP": "ON",
"OT_DNS_DSO": "ON",
"OT_LINK_RAW": "ON",
"OT_PLATFORM": "simulation",
"OT_UDP_FORWARD": "ON"
}
},
{
"name": "common",
"displayName": "Common Config",
"description": "Common configuration",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"OT_ANYCAST_LOCATOR": "ON",
"OT_BLE_TCAT": "ON",
"OT_BORDER_AGENT": "ON",
"OT_BORDER_AGENT_EPSKC": "ON",
"OT_BORDER_AGENT_ID": "ON",
"OT_BORDER_ROUTER": "ON",
"OT_CHANNEL_MANAGER": "ON",
"OT_CHANNEL_MONITOR": "ON",
"OT_COAP": "ON",
"OT_COAPS": "ON",
"OT_COAP_BLOCK": "ON",
"OT_COAP_OBSERVE": "ON",
"OT_COMMISSIONER": "ON",
"OT_COMPILE_WARNING_AS_ERROR": "ON",
"OT_COVERAGE": "ON",
"OT_DATASET_UPDATER": "ON",
"OT_DHCP6_CLIENT": "ON",
"OT_DHCP6_SERVER": "ON",
"OT_DIAGNOSTIC": "ON",
"OT_DNSSD_SERVER": "ON",
"OT_DNS_CLIENT": "ON",
"OT_ECDSA": "ON",
"OT_HISTORY_TRACKER": "ON",
"OT_IP6_FRAGM": "ON",
"OT_JAM_DETECTION": "ON",
"OT_JOINER": "ON",
"OT_LOG_LEVEL_DYNAMIC": "ON",
"OT_MAC_FILTER": "ON",
"OT_NEIGHBOR_DISCOVERY_AGENT": "ON",
"OT_NETDATA_PUBLISHER": "ON",
"OT_NETDIAG_CLIENT": "ON",
"OT_PING_SENDER": "ON",
"OT_RCP_RESTORATION_MAX_COUNT": "2",
"OT_RCP_TX_WAIT_TIME_SECS": "5",
"OT_REFERENCE_DEVICE": "ON",
"OT_SERVICE": "ON",
"OT_SLAAC": "ON",
"OT_SNTP_CLIENT": "ON",
"OT_SRP_CLIENT": "ON",
"OT_SRP_SERVER": "ON",
"OT_SRP_SERVER_FAST_START_MODE": "ON",
"OT_UPTIME": "ON"
}
}
],
"buildPresets": [
{
"name": "simulation",
"displayName": "Simulation Build",
"configurePreset": "simulation"
}
],
"testPresets": [
{
"name": "simulation",
"displayName": "Simulation Test",
"configurePreset": "simulation",
"output": {
"outputOnFailure": true
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": true
}
}
]
}