forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmake-variants.TEMPLATE-ESP32.json
69 lines (67 loc) · 2.37 KB
/
cmake-variants.TEMPLATE-ESP32.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
65
66
67
68
69
{
"buildType": {
"default": "debug",
"choices": {
"debug": {
"short": "Debug",
"long": "Emit debug information without performing optimizations",
"buildType": "Debug"
},
"release": {
"short": "Release",
"long": "Enable optimizations, omit debug info",
"buildType": "Release"
},
"minsize": {
"short": "MinSizeRel",
"long": "Optimize for smallest binary size",
"buildType": "MinSizeRel"
},
"reldeb": {
"short": "RelWithDebInfo",
"long": "Perform optimizations AND include debugging information",
"buildType": "RelWithDebInfo"
}
}
},
"linkage": {
"default": "",
"choices": {
"Esp32_nanoCLR": {
"short": "NanoCLR",
"settings": {
"BUILD_VERSION" : "0.9.99.999",
"TOOLCHAIN_PREFIX" : "<absolute-path-to-the-toolchain-prefix-folder-mind-the-forward-slashes>",
"ESP32_IDF_PATH" : "<absolute-path-to-the-IDF-folder-mind-the-forward-slashes>",
"ESP32_LIBS_PATH" : "<absolute-path-to-the-bootloader-folder-mind-the-forward-slashes>",
"TARGET_SERIES" : "ESP32",
"USE_FPU" : "TRUE",
"RTOS" : "FREERTOS",
"SWO_OUTPUT" : "OFF",
"NF_BUILD_RTM" : "OFF",
"NF_WP_TRACE_ERRORS" : "OFF",
"NF_WP_TRACE_HEADERS" : "OFF",
"NF_WP_TRACE_STATE" : "OFF",
"NF_WP_TRACE_NODATA" : "OFF",
"NF_WP_TRACE_ALL" : "OFF",
"NF_WP_IMPLEMENTS_CRC32" : "OFF",
"NF_FEATURE_DEBUGGER" : "ON",
"NF_FEATURE_RTC" : "ON",
"NF_FEATURE_USE_APPDOMAINS" : "OFF",
"NF_FEATURE_USE_FILESYSTEM" : "OFF",
"API_System.Net" : "ON",
"NF_SECURITY_OPENSSL" : "ON",
"API_Windows.Devices.Wifi": "ON",
"API_Windows.Devices.Adc" : "ON",
"API_Windows.Devices.Gpio" : "ON",
"API_Windows.Devices.I2c" : "ON",
"API_Windows.Devices.Pwm" : "ON",
"API_Windows.Devices.SerialCommunication" : "ON",
"API_Windows.Devices.Spi" : "ON",
"API_Windows.Networking.Sockets" : "OFF",
"API_Hardware.Esp32" : "ON"
}
}
}
}
}