mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 07:42:28 +00:00
The APPLICATION_BASE variable in the example Kconfig file was copied in from an (out of tree) application which relied on it during the Kbuild days, but it's actually not needed by the CMake build system and should be removed. Signed-off-by: Marti Bolivar <marti@opensourcefoundries.com>
10 lines
176 B
Plaintext
10 lines
176 B
Plaintext
mainmenu "Your Application Name"
|
|
|
|
config ZEPHYR_BASE
|
|
string
|
|
option env="ZEPHYR_BASE"
|
|
|
|
source "$ZEPHYR_BASE/Kconfig.zephyr"
|
|
|
|
# Your application configuration options go here.
|