From 4930d247d3ad6fb600292311a734b455fe16bab5 Mon Sep 17 00:00:00 2001 From: "Hebert W. Parreira" Date: Mon, 13 Jan 2025 23:09:15 -0300 Subject: [PATCH] Add CMakeLists.txt for source to include component --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..bd77038 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +set(src_dirs ./src) +set(include_dirs ./src) +idf_component_register(SRC_DIRS ${src_dirs} + INCLUDE_DIRS ${include_dirs})