diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9eb37fb --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,11 @@ +# Adafruit Bus IO Library +# https://github.com/adafruit/Adafruit_BusIO +# MIT License + +cmake_minimum_required(VERSION 3.5) + +idf_component_register(SRCS "Adafruit_SSD1306.cpp" + INCLUDE_DIRS "." + REQUIRES arduino Adafruit_GFX_Library) + +project(Adafruit_SSD1306) diff --git a/component.mk b/component.mk new file mode 100644 index 0000000..049f190 --- /dev/null +++ b/component.mk @@ -0,0 +1 @@ +COMPONENT_ADD_INCLUDEDIRS = .