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.
27 lines
597 B
Meson
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,
|
|
],
|
|
)
|