mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00

keep the coding consistency, no logical changes. Also, renamed tests to avoid conflicts duplicated names.
17 lines
348 B
Meson
17 lines
348 B
Meson
test_file = [
|
|
'capiInitializer.cpp',
|
|
'capiFill.cpp',
|
|
'capiLinearGradient.cpp',
|
|
'capiMain.cpp',
|
|
'capiPaint.cpp',
|
|
'capiRadialGradient.cpp',
|
|
'capiShape.cpp',
|
|
'capiSwCanvas.cpp',
|
|
]
|
|
|
|
tests = executable('capiUnitTests',
|
|
test_file,
|
|
include_directories : headers,
|
|
link_with : thorvg_lib)
|
|
|
|
test('Capi Unit Tests', tests)
|