mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-15 04:24:28 +00:00

- 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
17 lines
330 B
Meson
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)
|