forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmake-variants.json
62 lines (62 loc) · 2.08 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
{
"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": {
"ST_NUCLEO64_F091RC": {
"short": "ST_NUCLEO64_F091RC",
"settings": {
"BUILD_VERSION": "0.9.99.999",
"BUILD_VERBOSE" : "OFF",
"CMAKE_TOOLCHAIN_FILE": "CMake/toolchain.arm-none-eabi.cmake",
"TOOLCHAIN_PREFIX": "<absolute-path-to-the-toolchain-folder-mind-the-forward-slashes>",
"TOOL_HEX2DFU_PREFIX": "<absolute-path-to-hex2dfu-mind-the-forward-slashes>",
"TOOL_SRECORD_PREFIX": "<absolute-path-to-srecord-folder-mind-the-forward-slashes>",
"TARGET_SERIES": "STM32F0xx",
"RTOS": "CHIBIOS",
"RTOS_SOURCE_FOLDER": "",
"TARGET_BOARD": "ST_NUCLEO64_F091RC",
"CHIBIOS_CONTRIB_REQUIRED": "OFF",
"CHIBIOS_CONTRIB_SOURCE": "",
"STM32_CUBE_PACKAGE_REQUIRED": "OFF",
"STM32_CUBE_PACKAGE_SOURCE": "",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_PLATFORM_NO_CLR_TRACE": "ON",
"NF_CLR_NO_IL_INLINE": "ON",
"USE_RNG": "OFF",
"NF_BUILD_RTM": "OFF",
"API_Hardware.Stm32": "ON",
"API_Windows.Devices.Gpio": "ON",
"API_System.Device.Gpio": "ON",
"API_Windows.Devices.Spi": "ON",
"API_System.Device.Spi": "ON",
"API_Windows.Devices.I2c": "ON",
"API_System.Device.I2c": "ON",
"API_Windows.Devices.Pwm": "ON",
"API_Windows.Devices.SerialCommunication": "ON",
"API_System.IO.Ports": "ON"
}
}
}
}
}