From c2478ce0570d74b135f1117b8506ec01cb6dc2fd Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Tue, 21 Nov 2023 14:35:51 +0100 Subject: [PATCH] Added ESP-IDF component support --- CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7cbff70 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ + +set(sourcedirs + . + VectorAlgebra/src +) + +set(includedirs + . + VectorAlgebra/include +) + +idf_component_register( + SRC_DIRS ${sourcedirs} + INCLUDE_DIRS ${includedirs} + REQUIRES arduino +)