mirror of
https://github.com/adafruit/Adafruit-GFX-Library.git
synced 2024-10-03 18:18:46 -04:00
30b2e1b99a
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)
|