2024A-SW/components/Serial_Console/CMakeLists.txt
Joe Kearney 3939941315 Fixed directory conflict on Windows. (#13)
CMake on Windows had conflicts with one directory in the project tree named `console`, and another named `Console`.

Co-authored-by: Joe Kearney <joe@clubk.club>
Reviewed-on: #13
2026-01-11 01:08:13 +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"
)