mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-05-22 17:47:04 +08:00
16 lines
335 B
CMake
16 lines
335 B
CMake
if(CONFIG_USING_ESP_CONSOLE)
|
|
set(COMPONENT_ADD_INCLUDEDIRS .)
|
|
set(COMPONENT_SRCS "commands.c"
|
|
"split_argv.c"
|
|
"argtable3/argtable3.c"
|
|
"linenoise/linenoise.c")
|
|
else()
|
|
set(COMPONENT_ADD_INCLUDEDIRS "")
|
|
set(COMPONENT_SRCS "")
|
|
endif()
|
|
|
|
set(COMPONENT_REQUIRES)
|
|
|
|
register_component()
|
|
|