2024A-SW/components/Console/CMakeLists.txt
Joe Kearney 376acd4815 Added console with one command (so far): log (#11)
Co-authored-by: Joe Kearney <joe@clubk.club>
Reviewed-on: #11
2026-01-10 22:49:51 +00:00

15 lines
259 B
CMake

idf_component_register(
SRCS
"Console.c"
"Commands/Log_Command.c"
INCLUDE_DIRS
"."
"./Commands"
REQUIRES
"SystemK"
"System_Events"
"console"
"log"
"nvs_flash"
"vfs"
)