mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-21 07:22:23 +00:00
34 lines
813 B
Meson
34 lines
813 B
Meson
if lottie_expressions
|
|
subdir('jerryscript')
|
|
endif
|
|
|
|
source_file = [
|
|
'tvgLottieBuilder.h',
|
|
'tvgLottieCommon.h',
|
|
'tvgLottieExpressions.h',
|
|
'tvgLottieInterpolator.h',
|
|
'tvgLottieLoader.h',
|
|
'tvgLottieModel.h',
|
|
'tvgLottieModifier.h',
|
|
'tvgLottieParser.h',
|
|
'tvgLottieParserHandler.h',
|
|
'tvgLottieProperty.h',
|
|
'tvgLottieRenderPooler.h',
|
|
'tvgLottieAnimation.cpp',
|
|
'tvgLottieBuilder.cpp',
|
|
'tvgLottieExpressions.cpp',
|
|
'tvgLottieInterpolator.cpp',
|
|
'tvgLottieLoader.cpp',
|
|
'tvgLottieModel.cpp',
|
|
'tvgLottieModifier.cpp',
|
|
'tvgLottieParserHandler.cpp',
|
|
'tvgLottieParser.cpp'
|
|
]
|
|
|
|
subloader_dep += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|
|
|
|
install_headers('thorvg_lottie.h')
|
|
headers += include_directories('.')
|