You've already forked M5Stack_Linux_Libs
mirror of
https://github.com/m5stack/M5Stack_Linux_Libs.git
synced 2026-05-20 11:01:38 -07:00
65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
|
|
mainmenu "C/CPP CMake project framework Kconfig configuration"
|
|
|
|
menu "Toolchain configuration"
|
|
|
|
menu "Toolchain info"
|
|
config CPU_ARCH
|
|
string "cpu arch"
|
|
default "x86_64"
|
|
endmenu
|
|
|
|
config TOOLCHAIN_PATH
|
|
string "toolchain path"
|
|
default ""
|
|
|
|
config TOOLCHAIN_PREFIX
|
|
string "toolchain prefix"
|
|
default ""
|
|
|
|
config TOOLCHAIN_FLAGS
|
|
string "toolchain FLAGS"
|
|
default ""
|
|
|
|
config LIB_LINK_SEARCH_PATH
|
|
string "lib link search patch"
|
|
default ""
|
|
|
|
choice
|
|
prompt "host system type"
|
|
default TOOLCHAIN_SYSTEM_UNIX
|
|
config TOOLCHAIN_SYSTEM_UNIX
|
|
bool "unix"
|
|
config TOOLCHAIN_SYSTEM_WIN
|
|
bool "win"
|
|
endchoice
|
|
|
|
choice
|
|
prompt "empty src file type"
|
|
default EMPTY_SRC_FILE_CPP
|
|
config EMPTY_SRC_FILE_CPP
|
|
bool "empty_src_file.cpp"
|
|
config EMPTY_SRC_FILE_C
|
|
bool "empty_src_file.c"
|
|
endchoice
|
|
|
|
config REPO_AUTOMATION
|
|
bool 'Download automation for the repo.'
|
|
default n
|
|
|
|
config COMMPILE_DEBUG
|
|
bool 'commpile debug msg!'
|
|
default n
|
|
|
|
endmenu
|
|
|
|
menu "Components configuration"
|
|
osource "${SDK_PATH}/components*/*/Kconfig"
|
|
osource "${EXT_COMPONENTS_PATH}/*/Kconfig"
|
|
osource "${PROJECT_PATH}/../components/*/Kconfig"
|
|
osource "${PROJECT_PATH}/*/Kconfig"
|
|
endmenu
|
|
|
|
config USE_STRIP_REDUCE_SIZE_ENABLED
|
|
bool "strip reduce size"
|
|
default n |