thorvg/test/meson.build

18 lines
334 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