mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-06 01:12:40 +02:00
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.
17 lines
328 B
Meson
17 lines
328 B
Meson
libappfile_sources = [
|
|
'file-import.c',
|
|
'file-open.c',
|
|
'file-remote.c',
|
|
'file-save.c',
|
|
'file-utils.c',
|
|
]
|
|
|
|
libappfile = static_library('appfile',
|
|
libappfile_sources,
|
|
include_directories: [ rootInclude, rootAppInclude, ],
|
|
c_args: '-DG_LOG_DOMAIN="Gimp-File"',
|
|
dependencies: [
|
|
gegl, gdk_pixbuf, gexiv2
|
|
],
|
|
)
|