libgimp: fix (again) the meson build.

My previous commit still is not completely right. Why is my local build
and the CI working so differently?!
This commit is contained in:
Jehan 2021-08-04 00:55:29 +02:00
parent 2026c2db82
commit 0a83a45732

View file

@ -303,6 +303,7 @@ libgimp = library('gimp-'+ gimp_api_version,
libgimpbase, libgimpbase,
libgimpcolor, libgimpcolor,
libgimpconfig, libgimpconfig,
libgimpmodule,
], ],
vs_module_defs: 'gimp.def', vs_module_defs: 'gimp.def',
install: true, install: true,
@ -322,6 +323,7 @@ libgimp_dep = declare_dependency(
libgimpcolor, libgimpcolor,
libgimpconfig, libgimpconfig,
libgimpmath, libgimpmath,
libgimpmodule,
], ],
include_directories: rootInclude, include_directories: rootInclude,
) )
@ -336,7 +338,6 @@ libgimpui = library('gimpui-'+ gimp_api_version,
], ],
c_args: [ '-DG_LOG_DOMAIN="LibGimpUI"', '-DGIMP_COMPILATION', ], c_args: [ '-DG_LOG_DOMAIN="LibGimpUI"', '-DGIMP_COMPILATION', ],
link_with: [ link_with: [
libgimpmodule,
libgimpwidgets, libgimpwidgets,
], ],
vs_module_defs: 'gimpui.def', vs_module_defs: 'gimpui.def',
@ -351,7 +352,6 @@ libgimpui_dep = declare_dependency(
gtk3, gtk3,
], ],
link_with: [ link_with: [
libgimpmodule,
libgimpui, libgimpui,
libgimpwidgets, libgimpwidgets,
], ],