Update hublib ios by a.kudelko at 2025-06-11T16:23:14

This commit is contained in:
a.kudelko
2025-06-11 16:24:17 +03:00
parent 2536df2bf5
commit 746e3bca5e
2 changed files with 45 additions and 16 deletions

29
Package.swift Normal file
View File

@@ -0,0 +1,29 @@
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
// Swift Package: Hublib
import PackageDescription;
let package = Package(
name: "Hublib",
platforms: [
.iOS(.v13),
.macOS(.v10_15)
],
products: [
.library(
name: "Hublib",
targets: ["Hublib"]
)
],
dependencies: [ ],
targets: [
.binaryTarget(name: "HublibFramework", path: "./HublibFramework.xcframework"),
.target(
name: "Hublib",
dependencies: [
.target(name: "HublibFramework")
]
),
]
)