fa2cb74ba1
This pull request adds two examples and tests using the ESP-IDF framework: * A test with the Arduino GFX library (which requires the arduino-esp32 library & Arduino BusIO library) * A test without the Arduino GFX library, which can be compiled without any additional dependencies. Having these tests helps prevent any future regressions that may break users of the ESP-IDF platform.
10 lines
446 B
CMake
10 lines
446 B
CMake
# This is a boilerplate top-level project CMakeLists.txt file.
|
|
# This is the primary file which CMake uses to learn how to build the project.
|
|
#
|
|
# Most of the important stuff happens in the 'main' directory.
|
|
#
|
|
# See https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/build-system.html#example-project for more details.
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(without-gfx)
|