diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..de1507c --- /dev/null +++ b/Package.swift @@ -0,0 +1,23 @@ +// swift-tools-version:5.7 + +import PackageDescription + +let package = Package( + name: "IrohaCrypto", + platforms: [ + .iOS(.v12) + ], + products: [ + .library(name: "IrohaCrypto", targets: ["IrohaCrypto"]) + ], + targets: [ + .target( + name: "IrohaCrypto", + path: "IrohaCrypto", + publicHeadersPath: "include", + cSettings: [ + .headerSearchPath("include") + ] + ) + ] +)