https://github.com/fourplusone/swift-package-zlib
A Swift packaged version of zlib. On Darwin based systems this package just reexports the system-wide zlib
https://github.com/fourplusone/swift-package-zlib
Last synced: 9 months ago
JSON representation
A Swift packaged version of zlib. On Darwin based systems this package just reexports the system-wide zlib
- Host: GitHub
- URL: https://github.com/fourplusone/swift-package-zlib
- Owner: fourplusone
- Created: 2020-06-20T09:59:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-21T08:58:22.000Z (about 6 years ago)
- Last Synced: 2025-07-26T11:41:46.762Z (11 months ago)
- Language: C
- Homepage:
- Size: 33.2 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swift Package: zlib
A Swift packaged version of zlib. On Darwin based systems this package just reexports the system-wide zlib
 
# Usage
Add swift-package-zlib as a dependency in your `Package.swift` file
```swift
dependencies: [
// ...
.package(url:"https://github.com/fourplusone/swift-package-zlib", .branch("master")),
],
targets: [
.target(
dependencies: [.product(name: "Z",package:"swift-package-zlib")]),
]
```