libgnt/libgnt

757982d6c981
Parents 809d367d2b52
Children ec210e0a9332
override the dependency if we're on a new enough version of meson

Testing Done:
Just ran meson to make sure there weren't any errors.

Reviewed at https://reviews.imfreedom.org/r/836/
  • +4 -0
    meson.build
  • --- a/meson.build Sat Jul 24 04:18:40 2021 -0500
    +++ b/meson.build Tue Aug 03 00:37:31 2021 -0500
    @@ -225,6 +225,10 @@
    link_with : libgnt,
    dependencies : [ncurses, glib])
    +if meson.version().version_compare('>=0.54.0')
    + meson.override_dependency('gnt', libgnt_dep)
    +endif
    +
    pkgconfig.generate(
    name : 'LibGNT',
    description : 'Glib Ncurses Toolkit is a collection of curses-widgets.',