thorvg/test/meson.build
Hermet Park 20c68e3b37 test capi: code refactoring.
keep the coding consistency, no logical changes.

Also, renamed tests to avoid conflicts duplicated names.
2021-06-17 14:57:06 +09:00

17 lines
333 B
Meson

test_file = [
'testMain.cpp',
'testInitializer.cpp',
'testSwCanvas.cpp',
'testSwCanvasBase.cpp',
]
tests = executable('tvgUnitTests',
test_file,
include_directories : headers,
link_with : thorvg_lib)
test('Unit Tests', tests)
if get_option('bindings').contains('capi') == true
subdir('capi')
endif