lottie: Process Dash info inside lottie library.
[platform/core/uifw/lottie-player.git] / test / meson.build
1
2 vector_test_sources  = files('testsuite.cpp')
3 vector_test_sources += files('test_vpath.cpp')
4
5 gtest_dep  = dependency('gtest')
6
7 vector_testsuite = executable('vectorTestSuite',
8                               vector_test_sources,
9                               include_directories : inc,
10                               dependencies : [gtest_dep, library_deps])
11
12 test('Vector Testsuite', vector_testsuite)
13
14
15 animation_test_sources  = files('testsuite.cpp')
16 animation_test_sources += files('test_lottieanimation.cpp')
17 animation_test_sources += files('test_lottieanimation_capi.cpp')
18
19 animation_testsuite = executable('animationTestSuite',
20                               animation_test_sources,
21                               include_directories : inc,
22                               link_with : lottie_player_lib,
23                               dependencies : gtest_dep)
24
25 test('Animation Testsuite', animation_testsuite)