mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-20 06:52:03 +00:00
22 lines
463 B
Meson
22 lines
463 B
Meson
source_file = [
|
|
'tvgSwCommon.h',
|
|
'tvgSwRasterC.h',
|
|
'tvgSwRasterAvx.h',
|
|
'tvgSwRasterNeon.h',
|
|
'tvgSwRasterTexmap.h',
|
|
'tvgSwFill.cpp',
|
|
'tvgSwImage.cpp',
|
|
'tvgSwMath.cpp',
|
|
'tvgSwRenderer.h',
|
|
'tvgSwRaster.cpp',
|
|
'tvgSwRenderer.cpp',
|
|
'tvgSwMemPool.cpp',
|
|
'tvgSwRle.cpp',
|
|
'tvgSwShape.cpp',
|
|
'tvgSwStroke.cpp',
|
|
]
|
|
|
|
engine_dep += [declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file
|
|
)]
|