thorvg/test/capi/meson.build
Hermet Park c7123a1547 test: enhanced the unit-test coverage
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
2023-09-26 10:48:33 +09:00

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)