forked from TiejunMS/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcmake-variants.json
113 lines (113 loc) · 4.48 KB
/
cmake-variants.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
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
{
"buildType": {
"default": "debug",
"choices": {
"debug": {
"short": "Debug",
"long": "Emit debug information without performing optimizations",
"buildType": "Debug"
},
"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": "Esp32_nanoCLR",
"settings": {
"BUILD_VERSION": "0.9.99.999",
"CMAKE_TOOLCHAIN_FILE": "CMake/toolchain.xtensa-esp32-elf.cmake",
"TOOLCHAIN_PREFIX": "<absolute-path-to-the-esp32-toolchain-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-ESP32-libs-folder-mind-the-forward-slashes>",
"EXECUTABLE_OUTPUT_PATH": "${workspaceRoot}/build",
"TARGET_SERIES": "ESP32",
"TARGET_BOARD": "ESP32_WROOM_32",
"RTOS": "FREERTOS_ESP32",
"NF_BUILD_RTM": "OFF",
"NF_TARGET_HAS_NANOBOOTER": "OFF",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_FEATURE_SUPPORT_REFLECTION": "ON",
"NF_FEATURE_HAS_CONFIG_BLOCK": "ON",
"NF_FEATURE_HAS_SDCARD": "ON",
"API_System.Net": "ON",
"NF_SECURITY_MBEDTLS": "ON",
"MBEDTLS_SOURCE": "",
"API_nanoFramework.ResourceManager": "ON",
"API_nanoFramework.System.Collections": "ON",
"API_nanoFramework.System.Text": "ON",
"API_Windows.Devices.Wifi": "ON",
"API_Windows.Devices.Adc": "ON",
"API_System.Devices.Dac": "OFF",
"API_System.IO.FileSystem": "OFF",
"API_Windows.Devices.Gpio": "ON",
"API_System.Device.Gpio": "ON",
"API_Windows.Devices.I2c": "ON",
"API_System.Device.I2c": "ON",
"API_Windows.Devices.Pwm": "ON",
"API_Windows.Devices.SerialCommunication": "ON",
"API_Windows.Devices.Spi": "ON",
"API_Windows.Networking.Sockets": "OFF",
"API_Windows.Storage": "ON",
"API_Hardware.Esp32": "ON",
"API_nanoFramework.Hardware.Esp32.Rmt": "ON"
}
},
"Esp32_nanoCLR_Wrover": {
"short": "Esp32_nanoCLR_Wrover",
"settings": {
"BUILD_VERSION": "0.9.99.999",
"CMAKE_TOOLCHAIN_FILE": "CMake/toolchain.xtensa-esp32-elf.cmake",
"TOOLCHAIN_PREFIX": "<absolute-path-to-the-esp32-toolchain-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-ESP32-libs-folder-mind-the-forward-slashes>",
"EXECUTABLE_OUTPUT_PATH": "${workspaceRoot}/build",
"TARGET_SERIES": "ESP32",
"TARGET_BOARD": "ESP32_WROOM_32",
"RTOS": "FREERTOS_ESP32",
"NF_BUILD_RTM": "OFF",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_FEATURE_SUPPORT_REFLECTION": "ON",
"NF_FEATURE_HAS_CONFIG_BLOCK": "ON",
"NF_FEATURE_HAS_SDCARD": "ON",
"API_System.Net": "ON",
"NF_SECURITY_MBEDTLS": "ON",
"MBEDTLS_SOURCE": "",
"API_nanoFramework.ResourceManager": "ON",
"API_nanoFramework.System.Collections": "ON",
"API_nanoFramework.System.Text": "ON",
"API_Windows.Devices.Wifi": "ON",
"API_Windows.Devices.Adc": "ON",
"API_System.Device.Dac": "OFF",
"API_System.IO.FileSystem": "OFF",
"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_Windows.Storage": "ON",
"API_Hardware.Esp32": "ON",
"API_nanoFramework.Hardware.Esp32.Rmt": "ON",
"API_nanoFramework.Graphics": "ON",
"GRAPHICS_DISPLAY": "ILI9341_240x320_SPI.cpp",
"TOUCHPANEL_DEVICE": "XPT2046.cpp",
"GRAPHICS_DISPLAY_INTERFACE": "Spi_To_Display.cpp",
"TOUCHPANEL_INTERFACE": "Spi_To_TouchPanel.cpp"
}
}
}
}
}