example: just renamed the svg file.
[platform/core/graphics/tizenvg.git] / src / lib / meson.build
1 engine_dep = []
2
3 if get_option('engines').contains('sw') == true
4     subdir('sw_engine')
5 endif
6
7 if get_option('engines').contains('gl') == true
8     subdir('gl_engine')
9 endif
10
11 source_file = [
12    'tvgCanvasImpl.h',
13    'tvgCommon.h',
14    'tvgBezier.h',
15    'tvgBinaryDesc.h',
16    'tvgFill.h',
17    'tvgLoader.h',
18    'tvgLoadModule.h',
19    'tvgLzw.h',
20    'tvgMath.h',
21    'tvgPictureImpl.h',
22    'tvgRender.h',
23    'tvgIteratorAccessor.h',
24    'tvgSaveModule.h',
25    'tvgSceneImpl.h',
26    'tvgShapeImpl.h',
27    'tvgTaskScheduler.h',
28    'tvgAccessor.cpp',
29    'tvgBezier.cpp',
30    'tvgCanvas.cpp',
31    'tvgFill.cpp',
32    'tvgGlCanvas.cpp',
33    'tvgInitializer.cpp',
34    'tvgLinearGradient.cpp',
35    'tvgLzw.cpp',
36    'tvgLoader.cpp',
37    'tvgPaint.cpp',
38    'tvgPicture.cpp',
39    'tvgRadialGradient.cpp',
40    'tvgRender.cpp',
41    'tvgSaver.cpp',
42    'tvgScene.cpp',
43    'tvgShape.cpp',
44    'tvgSwCanvas.cpp',
45    'tvgTaskScheduler.cpp',
46 ]
47
48 common_dep = declare_dependency(
49    dependencies        : engine_dep,
50    include_directories : include_directories('.'),
51    sources             : source_file
52 )