From aee55a7dd6a5e00f794ab561a7f882c0f17c028d Mon Sep 17 00:00:00 2001 From: dizcza Date: Thu, 20 Feb 2025 18:13:44 +0200 Subject: [PATCH] Added a cmake file to support Arduino as a component in ESP-IDF --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..325e2cf --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +file(GLOB SOURCES src/*.cpp) +idf_component_register( + SRCS ${SOURCES} + INCLUDE_DIRS src + REQUIRES arduino +)