mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
This should ensure that SPM users won't have to download swcomp's dependencies.
31 lines
949 B
Swift
31 lines
949 B
Swift
// swift-tools-version:5.2
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "SWCompression",
|
|
products: [
|
|
.library(
|
|
name: "SWCompression",
|
|
targets: ["SWCompression"]),
|
|
],
|
|
dependencies: [
|
|
.package(name: "BitByteData", url: "https://github.com/tsolomko/BitByteData",
|
|
from: "2.0.0"),
|
|
.package(name: "SwiftCLI", url: "https://github.com/jakeheis/SwiftCLI",
|
|
from: "6.0.0"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "SWCompression",
|
|
dependencies: ["BitByteData"],
|
|
path: "Sources",
|
|
sources: ["Common", "7-Zip", "BZip2", "Deflate", "GZip", "LZ4", "LZMA", "LZMA2", "TAR", "XZ", "ZIP", "Zlib"]),
|
|
.target(
|
|
name: "swcomp",
|
|
dependencies: ["SWCompression", "SwiftCLI"],
|
|
path: "Sources",
|
|
sources: ["swcomp"]),
|
|
],
|
|
swiftLanguageVersions: [.v5]
|
|
)
|