gplugin/gplugin

Add GModule to GPlugin internal dependency

8 months ago, Elliott Sales de Andrade
56abba6da605
Parents 1644e668393b
Children b493e1ee4fbd
Add GModule to GPlugin internal dependency

This is required at build time as the `gplugin-native-plugin.h` header includes GModule headers, and must be passed to anything using GPlugin as a subproject.

Testing Done:
Compiled without GModule on standard include path.

Reviewed at https://reviews.imfreedom.org/r/2642/
--- a/gplugin/meson.build Mon Sep 11 21:49:36 2023 -0500
+++ b/gplugin/meson.build Mon Oct 09 22:28:34 2023 -0500
@@ -205,7 +205,7 @@
include_directories : [toplevel_inc, include_directories('.')],
link_with : gplugin,
sources : GPLUGIN_PUBLIC_BUILT_HEADERS + GPLUGIN_GENERATED_TARGETS,
- dependencies : [GLIB, GOBJECT]
+ dependencies : [GLIB, GOBJECT, GMODULE],
)
meson.override_dependency('gplugin', gplugin_dep)