mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00

major functions are added for Path specification. added backend engine infra skeleton. Change-Id: Ia923b02649cff545fa768ab8538ad7187195826f
19 lines
339 B
Meson
19 lines
339 B
Meson
subdir('sw_engine')
|
|
subdir('gl_engine')
|
|
|
|
source_file = [
|
|
'tvgCommon.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
|
|
)
|
|
|