1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00
Files
gimp/app/path/meson.build

28 lines
604 B
Meson
Raw Normal View History

2025-07-07 15:43:07 +02:00
libapppath_sources = [
2017-11-01 14:27:13 +01:00
'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',
2017-11-01 14:27:13 +01:00
'gimpstroke-new.c',
'gimpstroke.c',
'gimpvectorlayer.c',
'gimpvectorlayeroptions.c',
'gimpvectorlayerundo.c',
2017-11-01 14:27:13 +01:00
]
2025-07-07 15:43:07 +02:00
libapppath = static_library('apppath',
libapppath_sources,
2017-11-01 14:27:13 +01:00
include_directories: [ rootInclude, rootAppInclude, ],
2025-07-07 15:43:07 +02:00
c_args: '-DG_LOG_DOMAIN="Gimp-Path"',
2017-11-01 14:27:13 +01:00
dependencies: [
cairo, gegl, gdk_pixbuf, gexiv2
2017-11-01 14:27:13 +01:00
],
)