Closed Tachi107 closed 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.
pkg.generate()
This also removes the unneeded -lz from Libs.private when Requires.private already specifies zlib.
-lz
Libs.private
Requires.private
zlib
Thanks!
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
fromLibs.private
whenRequires.private
already specifieszlib
.