Skip to content

Draft: Add rlottie library build

Jonatan Hatakeyama Zeidler requested to merge rlottie into master

To use it add this to app/CMakeLists.txt:

find_package(rlottie REQUIRED)

target_link_libraries(${PROJECT_NAME} rlottie::rlottie)

You could reduce build time and size by disabling these features if not needed:

option(LOTTIE_MODULE "Enable LOTTIE MODULE SUPPORT" ON)
option(LOTTIE_THREAD "Enable LOTTIE THREAD SUPPORT" ON)
option(LOTTIE_CACHE "Enable LOTTIE CACHE SUPPORT" ON)

Do so by adding "-DLOTTIE_<OPTION>=OFF" to build_args in the clickable.json rlottie block.

Edited by Jonatan Hatakeyama Zeidler

Merge request reports