Gimp/app/path/meson.build
Jehan ada86282de app: reimplement saving/loading of vector layers and bump to XCF 24.
We now have a proper PROP_VECTOR_LAYER property in the XCF which will
store the various data relevant to vector layers.
This also fixes saving this new type of layers at all, since it was
broken in MR !773.
2025-08-16 23:44:09 -04:00

27 lines
597 B
Meson

libapppath_sources = [
'gimpanchor.c',
'gimpbezierstroke.c',
'gimppath.c',
'gimppath-compat.c',
'gimppath-export.c',
'gimppath-import.c',
'gimppath-preview.c',
'gimppath-warp.c',
'gimppathmodundo.c',
'gimppathpropundo.c',
'gimppathundo.c',
'gimpstroke-new.c',
'gimpstroke.c',
'gimpvectorlayer.c',
'gimpvectorlayeroptions.c',
'gimpvectorlayerundo.c',
]
libapppath = static_library('apppath',
libapppath_sources,
include_directories: [ rootInclude, rootAppInclude, ],
c_args: '-DG_LOG_DOMAIN="Gimp-Path"',
dependencies: [
cairo, gegl, gdk_pixbuf,
],
)