forked from nanoframework/nf-interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
55 lines (55 loc) · 1.9 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
{
"version": 4,
"include": [
"../../../CMake/arm-gcc.json",
"../../../config/user-tools-repos.json",
"../../../config/user-prefs.json"
],
"configurePresets": [
{
"name": "ORGPAL_PALX",
"inherits": [
"arm-gcc-cortex-preset",
"user-tools-repos",
"user-prefs"
],
"hidden": false,
"cacheVariables": {
"TARGET_BOARD": "ORGPAL_PALX",
"TARGET_SERIES": "STM32F7xx",
"RTOS": "ChibiOS",
"CHIBIOS_CONTRIB_REQUIRED": "ON",
"STM32_CUBE_PACKAGE_REQUIRED": "ON",
"SUPPORT_ANY_BASE_CONVERSION": "ON",
"NF_FEATURE_DEBUGGER": "ON",
"NF_FEATURE_RTC": "ON",
"NF_FEATURE_HAS_SDCARD": "ON",
"NF_FEATURE_HAS_CONFIG_BLOCK": "ON",
"NF_FEATURE_HAS_USB_MSD": "ON",
"NF_FEATURE_USE_SPIFFS": "ON",
"NF_FEATURE_HAS_ACCESSIBLE_STORAGE": "ON",
"NF_BUILD_RTM": "OFF",
"API_System.Math": "ON",
"API_Hardware.Stm32": "ON",
"API_System.Device.Gpio": "ON",
"API_System.Device.Spi": "ON",
"API_System.Device.I2c": "ON",
"API_System.Device.Pwm": "ON",
"API_System.IO.Ports": "ON",
"API_System.Device.Adc": "ON",
"API_System.Device.Dac": "ON",
"API_nanoFramework.ResourceManager": "ON",
"API_nanoFramework.System.Collections": "ON",
"API_nanoFramework.System.Text": "ON"
}
}
],
"buildPresets": [
{
"inherits": "base-user",
"name": "ORGPAL_PALX",
"displayName": "ORGPAL_PALX",
"configurePreset": "ORGPAL_PALX"
}
]
}