Skip to content

Commit

Permalink
IOS-5792: Preliminary SPM support
Browse files Browse the repository at this point in the history
  • Loading branch information
m3g0byt3 committed Jan 30, 2024
1 parent df7e981 commit 876f62b
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// swift-tools-version: 5.4
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "TangemWalletCoreBinaries",
platforms: [
.iOS(.v13),
],
products: [
.library(
name: "TangemWalletCoreBinaries",
targets: ["TangemWalletCoreBinaries"]
),
.library(
name: "SwiftProtobuf",
targets: ["SwiftProtobufBinaries"]
),
],
targets: [
.binaryTarget(
name: "TangemWalletCoreBinaries",
path: "WalletCore.xcframework"
),
.binaryTarget(
name: "SwiftProtobufBinaries",
path: "SwiftProtobuf.xcframework"
),
]
)

0 comments on commit 876f62b

Please sign in to comment.