From ca7b436495ebea66af65df8bad3c2df4fa20229e Mon Sep 17 00:00:00 2001 From: Lorenzo Dal Col Date: Fri, 28 Mar 2025 17:04:41 +0100 Subject: [PATCH] Add simple CMakeLists.txt In this way it can be compiled as a component with CMake. --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..b80131e9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRC_DIRS "src" "src/clib" + INCLUDE_DIRS "src" "src/clib" + REQUIRES "arduino")