mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 04:24:28 +00:00

separate Renderer interfaces to RenderCommon. Change-Id: I682b20db6cc8a058efee7dd4f519277d86306153
20 lines
363 B
Meson
20 lines
363 B
Meson
subdir('sw_engine')
|
|
subdir('gl_engine')
|
|
|
|
source_file = [
|
|
'tvgCommon.h',
|
|
'tvgRenderCommon.h',
|
|
'tvgEngine.cpp',
|
|
'tvgCanvasBase.h',
|
|
'tvgShapePath.h',
|
|
'tvgSwCanvas.cpp',
|
|
'tvgGlCanvas.cpp',
|
|
'tvgSceneNode.cpp',
|
|
'tvgShapeNode.cpp'
|
|
]
|
|
|
|
src_dep = declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)
|
|
|