mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-18 22:11:32 +00:00

refactor common code to consolidate Bezier and line function implementations into a single location.
17 lines
328 B
Meson
17 lines
328 B
Meson
source_file = [
|
|
'tvgArray.h',
|
|
'tvgCompressor.h',
|
|
'tvgInlist.h',
|
|
'tvgLines.h',
|
|
'tvgLock.h',
|
|
'tvgMath.h',
|
|
'tvgStr.h',
|
|
'tvgCompressor.cpp',
|
|
'tvgLines.cpp',
|
|
'tvgMath.cpp',
|
|
'tvgStr.cpp'
|
|
]
|
|
|
|
utils_dep = declare_dependency(
|
|
include_directories : include_directories('.'),
|
|
sources : source_file)
|