libgnt/libgnt

Parents 3fadbfa21320
Children 73d8724225e7
When someone uses our pc file they shouldn't need to explicitly add gobject to compile

Testing Done:
Ran configure and verified that `${builddir}/meson-private/gnt.pc` properly had `gobject-2.0` in `Required`

```
Requires: glib-2.0 >= 2.16.0, gobject-2.0
```

Reviewed at https://reviews.imfreedom.org/r/1478/
  • +1 -1
    meson.build
  • --- a/meson.build Tue Sep 28 01:12:20 2021 -0500
    +++ b/meson.build Fri May 27 04:15:09 2022 -0500
    @@ -247,7 +247,7 @@
    filebase : 'gnt',
    subdirs : 'gnt',
    libraries : [libgnt],
    - requires : ['glib-2.0'],
    + requires : ['glib-2.0', 'gobject-2.0'],
    variables : ['plugindir = ${libdir}/gnt'],
    )