Upload files to "/"

This commit is contained in:
Bojan Karlicic 2024-10-02 19:46:36 +00:00
parent e4f9a806c4
commit 5ad6fe8793

24
Package.swift Normal file
View File

@ -0,0 +1,24 @@
// swift-tools-version: 5.10
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "OcambaHood",
platforms: [
.iOS(.v12)
],
products: [
.library(
name: "OcambaHood",
targets: ["OcambaHood"]
)
],
targets: [
.binaryTarget(
name: "OcambaHood",
path: "./OcambaHood.xcframework"
),
]
)