-
Notifications
You must be signed in to change notification settings - Fork 14
/
Kconfig
36 lines (29 loc) · 1.18 KB
/
Kconfig
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
mainmenu "MaixCDK configuration, platform: ${PLATFORM}"
menu "SDK Components Configuration"
osource "${SDK_PATH}/components/*/Kconfig"
endmenu
menu "3rd party Components Configuration"
osource "${SDK_PATH}/components/3rd_party/*/Kconfig"
endmenu
menu "Extra Components Configuration"
osource "${MAIXCDK_EXTRA_COMPONENTS_PATH}/*/Kconfig"
# components released with python package format, installed by pip install maixcdk-xxxx
# site-package directory is `python -c "import site;print(site.getusersitepackages())"`
osource "${PY_PKG_COMPONENTS_PATH}/*/Kconfig"
osource "${PY_USR_PKG_COMPONENTS_PATH}/*/Kconfig"
endmenu
menu "Project Components Configuration"
osource "${PROJECT_PATH}/../components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
osource "${PROJECT_PATH}/components/*/Kconfig"
endmenu
config LIBS_LINK_STATIC
bool "Link libraries statically"
default n
help
Link libraries statically, link all code to one executable file.
config COMPONENTS_COMPILE_FROM_SOURCE
bool "All components compile from source instead of using prebuilt libraries or local libraries"
default n
help
All components compile from source instead of using prebuilt libraries or local libraries.