thorvg/src/tools/lottie2gif/meson.build
Hermet Park 708e9a7c2a tools/lottie2gif: introduce a new converter tool.
Usage:
   lottie2gif [Lottie file] or [Lottie folder] [-r resolution] [-f fps]

Examples:
    $ lottie2gif input.json
    $ lottie2gif input.json -f 30
    $ lottie2gif input.json -r 600x600 -f 30
    $ lottie2gif lottiefolder
    $ lottie2gif lottiefolder -r 600x600
    $ lottie2gif lottiefolder -r 600x600 -f 30
2023-12-26 18:17:41 +09:00

8 lines
237 B
Meson

lottie2gif_src = files('lottie2gif.cpp')
executable('lottie2gif',
lottie2gif_src,
include_directories : headers,
cpp_args : compiler_flags,
install : true,
link_with : thorvg_lib)