Skip to content

v1.4.0

Latest
Compare
Choose a tag to compare
@furby-tm furby-tm released this 29 Oct 01:53
db004ff
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"),
    ]
  ),
]