pkg/libpng: name the lib png, so its not "liblibpng"

This commit is contained in:
Mitchell Hashimoto
2022-10-15 14:55:11 -07:00
parent 53d00ee8a2
commit 5b6eb2736a

View File

@ -42,7 +42,7 @@ pub fn buildLib(
opt: Options, opt: Options,
) !*std.build.LibExeObjStep { ) !*std.build.LibExeObjStep {
const target = step.target; const target = step.target;
const lib = b.addStaticLibrary("libpng", null); const lib = b.addStaticLibrary("png", null);
lib.setTarget(step.target); lib.setTarget(step.target);
lib.setBuildMode(step.build_mode); lib.setBuildMode(step.build_mode);