Releases: the-swift-collective/libwebp
Releases · the-swift-collective/libwebp
v1.4.0
To use this release of libwebp in your own swift project, add libwebp as a package dependency in your project's Package.swift
file.
// swift-tools-version: 5.5
dependencies: [
.package(url: "https://github.com/the-swift-collective/libwebp.git", from: "1.4.0"),
]
Then, for any target you'd like, add the libwebp product as a target dependency.
targets: [
.target(
name: "MyLibrary",
dependencies: [
/* add the libwebp product as a library dependency. */
.product(name: "WebP", package: "libwebp"),
]
),
]