prepare tvg v0.8 release
[platform/core/graphics/tizenvg.git] / test / meson.build
1 test_file = [
2     'testFill.cpp',
3     'testInitializer.cpp',
4     'testMain.cpp',
5     'testPaint.cpp',
6     'testPicture.cpp',
7     'testSavers.cpp',
8     'testScene.cpp',
9     'testShape.cpp',
10     'testSwCanvas.cpp',
11     'testSwCanvasBase.cpp',
12     'testSwEngine.cpp',
13 ]
14
15 tests = executable('tvgUnitTests',
16     test_file,
17     include_directories : headers,
18     link_with : thorvg_lib)
19
20 test('Unit Tests', tests, args : ['--success'])
21
22 if get_option('bindings').contains('capi') == true
23     subdir('capi')
24 endif