thorvg/src/lib/sw_engine/meson.build
Hermet Park 0e98809f15 sw_engine raster: code refactoring.
Separate simd implementation by files to maintain them easier.

Now we have avx, c, neon version implementation base,
we can add implementations to them.
2021-08-05 10:58:48 +09:00

21 lines
437 B
Meson

source_file = [
'tvgSwCommon.h',
'tvgSwRasterC.h',
'tvgSwRasterAvx.h',
'tvgSwRasterNeon.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
)]