From 1ebbb0f83a784bd13a73144d964a4638fd5817e9 Mon Sep 17 00:00:00 2001 From: Avi Date: Sun, 11 Sep 2022 23:17:06 -0400 Subject: [PATCH] Enable support for ezTime as ESP-IDF component. This enables support for ezTime as an ESP-IDF component (with Arduino as a component). This is a common pattern and is also done by the hugely popular adafruit / Adafruit-GFX-Library library. --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..7a594aa --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.5) + +idf_component_register( + INCLUDE_DIRS "src" + SRC_DIRS "src" + REQUIRES arduino + ) +project(ezTime)