Our build files were relying 'sysroot' to find gexiv2.h but this is not possible with Apple Clang om which sysroot points to macOS SDK. So, exotic environments like Homebrew were failing. Let's fix this.
33 lines
958 B
Meson
33 lines
958 B
Meson
libapppropgui_sources = [
|
|
'gimppropgui-channel-mixer.c',
|
|
'gimppropgui-color-balance.c',
|
|
'gimppropgui-color-rotate.c',
|
|
'gimppropgui-color-to-alpha.c',
|
|
'gimppropgui-convolution-matrix.c',
|
|
'gimppropgui-diffraction-patterns.c',
|
|
'gimppropgui-eval.c',
|
|
'gimppropgui-focus-blur.c',
|
|
'gimppropgui-generic.c',
|
|
'gimppropgui-hue-saturation.c',
|
|
'gimppropgui-motion-blur-circular.c',
|
|
'gimppropgui-motion-blur-linear.c',
|
|
'gimppropgui-motion-blur-zoom.c',
|
|
'gimppropgui-newsprint.c',
|
|
'gimppropgui-panorama-projection.c',
|
|
'gimppropgui-recursive-transform.c',
|
|
'gimppropgui-shadows-highlights.c',
|
|
'gimppropgui-spiral.c',
|
|
'gimppropgui-supernova.c',
|
|
'gimppropgui-utils.c',
|
|
'gimppropgui-vignette.c',
|
|
'gimppropgui.c',
|
|
]
|
|
|
|
libapppropgui = static_library('apppropgui',
|
|
libapppropgui_sources,
|
|
include_directories: [ rootInclude, rootAppInclude, ],
|
|
c_args: '-DG_LOG_DOMAIN="Gimp-PropGUI"',
|
|
dependencies: [
|
|
gegl, gtk3, gexiv2
|
|
],
|
|
)
|