From 813c17c039ec2e53751d447e86d1fc0dada5b91f Mon Sep 17 00:00:00 2001 From: James Aguilar Date: Sat, 4 Jan 2025 23:14:42 -0500 Subject: [PATCH] Add a CMakeLists.txt that allows this to be used as an IDF component. --- 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 0000000..cbba4af --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,3 @@ +idf_component_register(SRCS + INCLUDE_DIRS "src" + PRIV_INCLUDE_DIRS "src/FixedPointsCommon" "src/FixedPoints")