mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
209e8ef1a2
Co-authored-by: tvanfossen <vanfosst@gmail.com>
24 lines
464 B
CMake
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() |