mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-11 23:21:55 +00:00

supplements animation/lottie/sw_engine test cases. updated the page: https://github.com/thorvg/thorvg/wiki/Unit-Tests Issue: https://github.com/thorvg/thorvg/issues/1669
22 lines
466 B
Meson
22 lines
466 B
Meson
test_file = [
|
|
'capiAnimation.cpp',
|
|
'capiInitializer.cpp',
|
|
'capiFill.cpp',
|
|
'capiLinearGradient.cpp',
|
|
'capiMain.cpp',
|
|
'capiPaint.cpp',
|
|
'capiPicture.cpp',
|
|
'capiRadialGradient.cpp',
|
|
'capiSavers.cpp',
|
|
'capiScene.cpp',
|
|
'capiShape.cpp',
|
|
'capiSwCanvas.cpp',
|
|
]
|
|
|
|
tests = executable('capiUnitTests',
|
|
test_file,
|
|
include_directories : headers,
|
|
link_with : thorvg_lib,
|
|
cpp_args : compiler_flags)
|
|
|
|
test('Capi Unit Tests', tests)
|