1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/env_support/esp/rlottie/CMakeLists.txt
tvanfossen-bissell 209e8ef1a2
docs(rlottie): adding patch file, sample CMakeLists, and ESP-IDF doc (#3610)
Co-authored-by: tvanfossen <vanfosst@gmail.com>
2022-09-07 10:11:44 +02:00

24 lines
464 B
CMake

cmake_minimum_required(VERSION 3.5)
if (0)
if (LV_USE_RLOTTIE)
idf_component_register(SRCS ${SOURCES}
INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/rlottie/inc"
)
set(LOTTIE_MODULE OFF)
set(LOTTIE_THREAD OFF)
set(BUILD_SHARED_LIBS OFF)
option(BUILD_TESTING OFF)
function(install)
endfunction()
function(export)
endfunction()
add_subdirectory(rlottie)
target_link_libraries(${COMPONENT_LIB} INTERFACE rlottie)
endif()
endif()