ESP32-HUB75-MatrixPanel-DMA/CMakeLists.txt
Sol Huebner 4994279f75
Added examples for compile time options (ESP-IDF)
Also added hint to fix 3rd party library requirements depending on how they are included
2022-01-09 12:26:56 -05:00

25 lines
1.2 KiB
CMake

# HUB75 RGB LED matrix library utilizing ESP32 DMA Engine
# https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA
# MIT License
cmake_minimum_required(VERSION 3.5)
idf_component_register(SRCS "esp32_i2s_parallel_dma.c" "ESP32-HUB75-MatrixPanel-I2S-DMA.cpp" "ESP32-HUB75-MatrixPanel-leddrivers.cpp"
INCLUDE_DIRS "."
REQUIRES arduino)
# In case you are running into issues with "missing" header files from 3rd party libraries like "Adafruit_GFX.h"
# you can add them to the REQUIRES section above (depending on how you added the library as component!) like
# REQUIRES arduino Adafruit-GFX-Library)
# Example to build with USE_GFX_ROOT or NO_GFX / just uncomment the appropriate line
# target_compile_options(${COMPONENT_TARGET} PUBLIC -DUSE_GFX_ROOT)
# target_compile_options(${COMPONENT_TARGET} PUBLIC -DNO_GFX)
# You can also use multiple options like this
# target_compile_options(${COMPONENT_TARGET} PUBLIC -DNO_GFX -DNO_FAST_FUNCTIONS)
# All options can be found here:
# https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA/blob/master/doc/BuildOptions.md
project(ESP32-HUB75-MatrixPanel-I2S-DMA)