From 98740e396333b6b4f8c370907defd22eb511531e Mon Sep 17 00:00:00 2001 From: jojo2357 <66704796+jojo2357@users.noreply.github.com> Date: Wed, 4 May 2022 17:40:02 -0600 Subject: [PATCH] Create CMakeLists This will allow users using CMake toolchains (like myself) to include this as a component. --- CMakeLists.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..b34bc0d --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ +set(COMPONENT_SRCDIRS + "src" + ) + +set(COMPONENT_ADD_INCLUDEDIRS + "src" + ) + +# Arduino-ESP32 core https://github.com/espressif/arduino-esp32 +set(COMPONENT_REQUIRES + "arduino-esp32" + ) + +register_component()