Swiftgram/test/meson.build
subhransu mohanty b8df19759f lottie/test: added new unit test cases for library.
Change-Id: I1c9d61d98a1028601a36c4e6118b7109d88b2ace
2018-09-10 15:17:42 +09:00

26 lines
912 B
Meson

vector_test_sources = files('testsuite.cpp')
vector_test_sources += files('test_vpath.cpp')
gtest_dep = dependency('gtest')
vector_testsuite = executable('vectorTestSuite',
vector_test_sources,
include_directories : inc,
dependencies : [gtest_dep, library_deps])
test('Vector Testsuite', vector_testsuite)
animation_test_sources = files('testsuite.cpp')
animation_test_sources += files('test_lottieanimation.cpp')
animation_test_sources += files('test_lottieanimation_capi.cpp')
animation_testsuite = executable('animationTestSuite',
animation_test_sources,
include_directories : inc,
link_with : lottie_player_lib,
dependencies : gtest_dep)
test('Animation Testsuite', animation_testsuite)