diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..b4dafdf --- /dev/null +++ b/Package.swift @@ -0,0 +1,14 @@ +// swift-tools-version:5.8 + +import PackageDescription + +let package = Package( + name: "r2pipe", + products: [ + .library(name: "r2pipe", targets: ["r2pipe"]), + ], + dependencies: [], + targets: [ + .target(name: "r2pipe", path: "swift", sources: ["r2pipe.swift", "r2pipeNative.swift"]), + ] +)