examples: move tests to src/examples
[platform/core/graphics/tizenvg.git] / src / examples / meson.build
1 examples_dep = dependency('elementary', required : true)
2
3 source_file = [
4     'testArc.cpp',
5     'testAsync.cpp',
6     'testBlending.cpp',
7     'testBoundary.cpp',
8     'testCapi.cpp',
9     'testCustomTransform.cpp',
10     'testDirectUpdate.cpp',
11     'testDuplicate.cpp',
12     'testGradientTransform.cpp',
13     'testLinearGradient.cpp',
14     'testMultiCanvas.cpp',
15     'testMultiShapes.cpp',
16     'testPathCopy.cpp',
17     'testPath.cpp',
18     'testRadialGradient.cpp',
19     'testScene.cpp',
20     'testSceneTransform.cpp',
21     'testShape.cpp',
22     'testStroke.cpp',
23     'testStrokeLine.cpp',
24     'testSvg2.cpp',
25     'testSvg.cpp',
26     'testTransform.cpp',
27     'testUpdate.cpp',
28 ]
29
30 foreach current_file : source_file
31     name = current_file.split('.')[0]
32     executable(name, current_file,
33            include_directories : headers,
34            link_with : thorvg_lib,
35            dependencies : examples_dep)
36 endforeach