mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c043c43247
We take the GC9A01 as an example to illustrate how to implement user's own panel driver in their project folder, without making the esp-idf dirty.
10 lines
460 B
CMake
10 lines
460 B
CMake
cmake_minimum_required(VERSION 3.5)
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
|
project(lcd_gc9a01)
|
|
|
|
# As the upstream LVGL library has build warnings in esp-idf build system, this is only for temporarily workaround
|
|
# Will remove this workaround when upstream LVGL fixes the warnings in the next release
|
|
idf_component_get_property(lvgl_lib lvgl__lvgl COMPONENT_LIB)
|
|
target_compile_options(${lvgl_lib} PRIVATE "-Wno-empty-body" "-Wno-strict-prototypes")
|