9a7dc61c452a117e4d3b503aea5ef4c28640dba5
[platform/core/graphics/tizenvg.git] / src / lib / meson.build
1 subdir('sw_engine')
2 subdir('gl_engine')
3
4 source_file = [
5    'tvgCanvasImpl.h',
6    'tvgCommon.h',
7    'tvgBezier.h',
8    'tvgLoader.h',
9    'tvgLoaderMgr.h',
10    'tvgRender.h',
11    'tvgSceneImpl.h',
12    'tvgShapePath.h',
13    'tvgShapeImpl.h',
14    'tvgBezier.cpp',
15    'tvgCanvas.cpp',
16    'tvgFill.cpp',
17    'tvgGlCanvas.cpp',
18    'tvgInitializer.cpp',
19    'tvgLinearGradient.cpp',
20    'tvgLoaderMgr.cpp',
21    'tvgRadialGradient.cpp',
22    'tvgRender.cpp',
23    'tvgScene.cpp',
24    'tvgShape.cpp',
25    'tvgSwCanvas.cpp',
26 ]
27
28 engine_dep = [swengine_dep, glengine_dep]
29
30 common_dep = declare_dependency(
31    dependencies        : engine_dep,
32    include_directories : include_directories('.'),
33    sources             : source_file
34 )