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