mirror of
https://github.com/tsolomko/SWCompression.git
synced 2026-06-23 14:56:41 +00:00
27 lines
741 B
Swift
27 lines
741 B
Swift
// swift-tools-version:4.0
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "SWCompression",
|
|
products: [
|
|
.library(
|
|
name: "SWCompression",
|
|
targets: ["SWCompression"]),
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/jakeheis/SwiftCLI", from: "4.0.0")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "SWCompression",
|
|
path: "Sources",
|
|
sources: ["Common", "7-Zip", "BZip2", "Deflate", "GZip", "LZMA", "LZMA2", "TAR", "XZ", "ZIP", "Zlib"]),
|
|
.target(
|
|
name: "swcomp",
|
|
dependencies: ["SWCompression", "SwiftCLI"],
|
|
path: "Sources",
|
|
sources: ["swcomp"])
|
|
],
|
|
swiftLanguageVersions: [4]
|
|
)
|