mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-10-05 21:02:42 +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.
22 lines
431 B
Meson
22 lines
431 B
Meson
libappmenus_sources = [
|
|
'dockable-menu.c',
|
|
'file-menu.c',
|
|
'filters-menu.c',
|
|
'image-menu.c',
|
|
'menus.c',
|
|
'plug-in-menus.c',
|
|
'shortcuts-rc.c',
|
|
'tool-options-menu.c',
|
|
'window-menu.c',
|
|
'windows-menu.c',
|
|
]
|
|
|
|
libappmenus = static_library('appmenus',
|
|
libappmenus_sources,
|
|
include_directories: [ rootInclude, rootAppInclude, ],
|
|
c_args: '-DG_LOG_DOMAIN="Gimp-Menus"',
|
|
dependencies: [
|
|
gegl, gtk3, gexiv2
|
|
],
|
|
)
|