2021-09-01 08:50:48 -04:00
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
|
|
|
|
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
|
2022-01-10 06:00:40 -05:00
|
|
|
project(i80_controller)
|
2021-09-01 08:50:48 -04:00
|
|
|
|
|
|
|
# As the upstream LVGL library has build warnings in esp-idf build system, this is only for temporarily workaround
|
2021-09-26 23:32:29 -04:00
|
|
|
# Will remove this workaround when upstream LVGL fixes the warnings in the next release
|
2021-09-01 08:50:48 -04:00
|
|
|
idf_component_get_property(lvgl_lib lvgl__lvgl COMPONENT_LIB)
|
|
|
|
target_compile_options(${lvgl_lib} PRIVATE "-Wno-empty-body" "-Wno-strict-prototypes")
|