mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-18 22:11:32 +00:00

Organize bezier functions for internal share. this bezier can be used in svg loader. Change-Id: I78acd3273c0528688ca46ff7c29d78607bd729bd
32 lines
611 B
Meson
32 lines
611 B
Meson
subdir('sw_engine')
|
|
subdir('gl_engine')
|
|
|
|
source_file = [
|
|
'tvgCanvasImpl.h',
|
|
'tvgCommon.h',
|
|
'tvgBezier.h',
|
|
'tvgLoader.h',
|
|
'tvgLoaderMgr.h',
|
|
'tvgRender.h',
|
|
'tvgSceneImpl.h',
|
|
'tvgShapePath.h',
|
|
'tvgShapeImpl.h',
|
|
'tvgBezier.cpp',
|
|
'tvgCanvas.cpp',
|
|
'tvgFill.cpp',
|
|
'tvgGlCanvas.cpp',
|
|
'tvgInitializer.cpp',
|
|
'tvgLinearGradient.cpp',
|
|
'tvgLoaderMgr.cpp',
|
|
'tvgRadialGradient.cpp',
|
|
'tvgRender.cpp',
|
|
'tvgScene.cpp',
|
|
'tvgShape.cpp',
|
|
'tvgSwCanvas.cpp',
|
|
]
|
|
|
|
src_dep = declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)
|
|
|