thorvg/test/meson.build
JunsuChoi d92a2c25f6 infra CI: Upload unit test result to artifact
Users can download the unit test result list from PR-> Checks -> Build Test -> Artifacts.
2021-06-17 21:50:13 +09:00

17 lines
355 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, args : ['--success'])
if get_option('bindings').contains('capi') == true
subdir('capi')
endif