mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2026-07-27 20:05:52 +00:00
Enables Adafruit-GFX-Library as ESP-IDF component support (with Arduino as component)
12 lines
370 B
CMake
12 lines
370 B
CMake
# Adafruit GFX Library
|
|
# https://github.com/adafruit/Adafruit-GFX-Library
|
|
# BSD License
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
idf_component_register(SRCS "Adafruit_GFX.cpp" "Adafruit_GrayOLED.cpp" "Adafruit_SPITFT.cpp" "glcdfont.c"
|
|
INCLUDE_DIRS "."
|
|
REQUIRES arduino Adafruit_BusIO)
|
|
|
|
project(Adafruit-GFX-Library)
|