mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-14 12:04:29 +00:00

PaintNode -> Paint ShapeNode -> Shape SceneNode -> Scene We can keep clean and neat shorter names. Change-Id: Ic8521d456d947985e5fbe1ba2bde06faa1f52469
20 lines
353 B
Meson
20 lines
353 B
Meson
subdir('sw_engine')
|
|
subdir('gl_engine')
|
|
|
|
source_file = [
|
|
'tvgCommon.h',
|
|
'tvgRenderCommon.h',
|
|
'tvgEngine.cpp',
|
|
'tvgShapePath.h',
|
|
'tvgCanvas.cpp',
|
|
'tvgSwCanvas.cpp',
|
|
'tvgGlCanvas.cpp',
|
|
'tvgScene.cpp',
|
|
'tvgShape.cpp'
|
|
]
|
|
|
|
src_dep = declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)
|
|
|