From 484cfc1f8e07fbc0cabaf163c6a0473feec5d3ec Mon Sep 17 00:00:00 2001 From: Seakheng Cheu <81610713+SeakhengCheu@users.noreply.github.com> Date: Wed, 9 Jul 2025 10:52:14 +0700 Subject: [PATCH] Create Package.swift --- Package.swift | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Package.swift 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") + ] + ) + ] +)