mirror of https://github.com/GNOME/gimp.git
34 lines
767 B
Meson
34 lines
767 B
Meson
|
|
appgeglenums = custom_target('gimp-gegl-enums.c',
|
|
input : [ 'gimp-gegl-enums.h', ],
|
|
output: [ 'gimp-gegl-enums.c', ],
|
|
command: app_mkenums_custom_target_command,
|
|
capture: true,
|
|
)
|
|
|
|
libappgegl_sources = [
|
|
'gimp-babl-compat.c',
|
|
'gimp-babl.c',
|
|
'gimp-gegl-apply-operation.c',
|
|
'gimp-gegl-loops-sse2.c',
|
|
'gimp-gegl-loops.cc',
|
|
'gimp-gegl-mask-combine.cc',
|
|
'gimp-gegl-mask.c',
|
|
'gimp-gegl-nodes.c',
|
|
'gimp-gegl-tile-compat.c',
|
|
'gimp-gegl-utils.c',
|
|
'gimp-gegl.c',
|
|
'gimpapplicator.c',
|
|
'gimptilehandlervalidate.c',
|
|
appgeglenums,
|
|
]
|
|
|
|
libappgegl = static_library('appgegl',
|
|
libappgegl_sources,
|
|
include_directories: [ rootInclude, rootAppInclude, ],
|
|
c_args: '-DG_LOG_DOMAIN="Gimp-GEGL"',
|
|
dependencies: [
|
|
cairo, gegl, gdk_pixbuf,
|
|
],
|
|
)
|