From 3c8d46ededf8b6c14e233deb1433df0ae37795e9 Mon Sep 17 00:00:00 2001 From: John Boiles Date: Wed, 31 Jul 2024 16:46:12 -0700 Subject: [PATCH] Add CMakeLists.txt to support ESP-IDF --- 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..53cac78 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +# Adafruit ILI9341 Library +# MIT License + +cmake_minimum_required(VERSION 3.5) + +idf_component_register(SRCS "Adafruit_ILI9341.cpp" INCLUDE_DIRS "." REQUIRES Adafruit-GFX-Library arduino-esp32) + +project(Adafruit_ILI9341)