mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-09 14:13:43 +00:00
23 lines
485 B
Meson
23 lines
485 B
Meson
test_file = [
|
|
'testFill.cpp',
|
|
'testInitializer.cpp',
|
|
'testMain.cpp',
|
|
'testPaint.cpp',
|
|
'testPicture.cpp',
|
|
'testScene.cpp',
|
|
'testShape.cpp',
|
|
'testSwCanvas.cpp',
|
|
'testSwCanvasBase.cpp',
|
|
'testSwEngine.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
|