randy408 / libspng

Simple, modern libpng alternative
https://libspng.org
BSD 2-Clause "Simplified" License
742 stars 75 forks source link

build(meson): remove explicit pkgconf Libs.private #239

Closed Tachi107 closed 2 years ago

Tachi107 commented 2 years ago

Meson automatically extracts the required dependencies of the library passed to pkg.generate(), so there's no need to list them explicitly.

This also removes the unneeded -lz from Libs.private when Requires.private already specifies zlib.

randy408 commented 2 years ago

Thanks!