linuxOS_MC3302/sdk/X-AIOS-LT00-V1.0.4/build/kconf/Kconfig.example
2026-01-30 16:53:24 +08:00

33 lines
754 B
Plaintext
Executable File

# Kconfig - example configuration options
menu "Example Configuration"
config XOS_BUILD_EXAMPLE
bool "build example code"
default n
help
Select this option if you want to print cmake debug info.
config XOS_BUILD_EXAMPLE_AS_LIB
bool "build example code as lib"
default n
depends on XOS_BUILD_EXAMPLE
help
Select this option if you want to print cmake debug info.
config XOS_EXAMPLE_LIB_NAME
string "sample lib name"
default "hellosample"
depends on XOS_BUILD_EXAMPLE_AS_LIB
help
Select this option if you want to print cmake debug info.
config XOS_BUILD_EXAMPLE_IFDEF
bool "build example code as ifdef"
default n
depends on XOS_BUILD_EXAMPLE
help
Select this option if you want to print cmake debug info.
endmenu