thorvg/src/common/meson.build
Hermet Park d3c60955fa tvg: revise the tvg binary format for 1.0 release
- The TVG binary format now consistently compresses the data.
- Removed redundant internal properties as part of this change.

Please note that this change will break compatibility with the TVG file format from version 1.0 onward.

Issue: https://github.com/thorvg/thorvg/issues/1372
2023-11-02 11:58:23 +09:00

17 lines
330 B
Meson

source_file = [
'tvgArray.h',
'tvgBezier.h',
'tvgFormat.h',
'tvgCompressor.h',
'tvgList.h',
'tvgMath.h',
'tvgStr.h',
'tvgBezier.cpp',
'tvgCompressor.cpp',
'tvgMath.cpp',
'tvgStr.cpp'
]
utils_dep = declare_dependency(
include_directories : include_directories('.'),
sources : source_file)